blob: 95f45fdb6c6913bf892cb5ce59045ac3d0838491 [file] [log] [blame]
// Copyright 2018 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 WEBRUNNER_BROWSER_WEBRUNNER_CONTENT_BROWSER_CLIENT_H_
#define WEBRUNNER_BROWSER_WEBRUNNER_CONTENT_BROWSER_CLIENT_H_
#include "base/macros.h"
#include "content/public/browser/content_browser_client.h"
namespace webrunner {
class WebRunnerContentBrowserClient : public content::ContentBrowserClient {
public:
WebRunnerContentBrowserClient();
~WebRunnerContentBrowserClient() override;
// ContentBrowserClient overrides.
content::BrowserMainParts* CreateBrowserMainParts(
const content::MainFunctionParams& parameters) override;
private:
DISALLOW_COPY_AND_ASSIGN(WebRunnerContentBrowserClient);
};
} // namespace webrunner
#endif // WEBRUNNER_BROWSER_WEBRUNNER_CONTENT_BROWSER_CLIENT_H_