blob: a14713a1470aa96f6d9f62a69f0d46ef69b0e5b3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_CONTENT_CLIENT_H_
#define CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_CONTENT_CLIENT_H_
#include "base/macros.h"
#include "content/shell/common/shell_content_client.h"
namespace content {
class WebTestContentClient : public ShellContentClient {
public:
WebTestContentClient() {}
bool CanSendWhileSwappedOut(const IPC::Message* message) override;
private:
DISALLOW_COPY_AND_ASSIGN(WebTestContentClient);
};
} // namespace content
#endif // CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_CONTENT_CLIENT_H_