Chromium Code Reviews| Index: components/devtools_bridge/client/web_client_controller.h |
| diff --git a/components/devtools_bridge/client/web_client_controller.h b/components/devtools_bridge/client/web_client_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9604fad38588d8a50acd1494c789cd6e5729946f |
| --- /dev/null |
| +++ b/components/devtools_bridge/client/web_client_controller.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
|
mnaganov (inactive)
2014/11/24 11:47:20
2014
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_DEVTOOLS_BRIDGE_CLIENT_WEB_CLIENT_CONTROLLER_H_ |
| +#define COMPONENTS_DEVTOOLS_BRIDGE_CLIENT_WEB_CLIENT_CONTROLLER_H_ |
| + |
| +#include "content/public/browser/web_ui_controller.h" |
| + |
| +namespace devtools_bridge { |
| + |
| +class WebClientController : public content::WebUIController { |
| + public: |
| + explicit WebClientController(content::WebUI* web_ui); |
| + ~WebClientController() override; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(WebClientController); |
| +}; |
| + |
| +} // namespace devtools_bridge |
| + |
| +#endif // COMPONENTS_DEVTOOLS_BRIDGE_CLIENT_WEB_CLIENT_CONTROLLER_H_ |