Chromium Code Reviews| Index: chrome/browser/devtools/devtools_manager_delegate_impl.h |
| diff --git a/chrome/browser/devtools/devtools_manager_delegate_impl.h b/chrome/browser/devtools/devtools_manager_delegate_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..271a53582a0c6fc7a73e8409db4943641d6aa373 |
| --- /dev/null |
| +++ b/chrome/browser/devtools/devtools_manager_delegate_impl.h |
| @@ -0,0 +1,29 @@ |
| +// Copyright 2014 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_ |
| +#define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_ |
| + |
| +#include "base/compiler_specific.h" |
| +#include "base/macros.h" |
| +#include "content/public/browser/devtools_manager_delegate.h" |
| + |
| +namespace content { |
| +class DevToolsAgentHost; |
| +} |
| + |
| +class DevToolsManagerDelegateImpl : public content::DevToolsManagerDelegate { |
|
jam
2014/05/12 15:01:23
nit: the convention for chrome implementing an int
horo
2014/05/12 16:21:48
Done.
|
| + public: |
| + DevToolsManagerDelegateImpl(); |
| + virtual ~DevToolsManagerDelegateImpl(); |
| + |
| + // content::DevToolsManagerDelegate overrides: |
| + virtual void Inspect(content::BrowserContext* browser_context, |
| + content::DevToolsAgentHost* agent_host) OVERRIDE; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(DevToolsManagerDelegateImpl); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_ |