| Index: android_webview/browser/aw_dev_tools_manager_delegate.h
|
| diff --git a/android_webview/browser/aw_dev_tools_manager_delegate.h b/android_webview/browser/aw_dev_tools_manager_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..44fc27e49cb98aab30f9f304be743c7b35280ce7
|
| --- /dev/null
|
| +++ b/android_webview/browser/aw_dev_tools_manager_delegate.h
|
| @@ -0,0 +1,39 @@
|
| +// 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 ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_MANAGER_DELEGATE_H_
|
| +#define ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_MANAGER_DELEGATE_H_
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "content/public/browser/devtools_manager_delegate.h"
|
| +
|
| +namespace android_webview {
|
| +
|
| +class AwDevToolsManagerDelegate : public content::DevToolsManagerDelegate {
|
| + public:
|
| + AwDevToolsManagerDelegate();
|
| + virtual ~AwDevToolsManagerDelegate();
|
| +
|
| + // content::DevToolsManagerDelegate implementation.
|
| + virtual void Inspect(
|
| + content::BrowserContext* browser_context,
|
| + content::DevToolsAgentHost* agent_host) OVERRIDE {}
|
| + virtual void DevToolsAgentStateChanged(
|
| + content::DevToolsAgentHost* agent_host,
|
| + bool attached) OVERRIDE {}
|
| + virtual base::DictionaryValue* HandleCommand(
|
| + content::DevToolsAgentHost* agent_host,
|
| + base::DictionaryValue* command_dict) OVERRIDE;
|
| + virtual scoped_ptr<content::DevToolsTarget> CreateNewTarget(
|
| + const GURL& url) OVERRIDE;
|
| + virtual void EnumerateTargets(TargetCallback callback) OVERRIDE;
|
| + virtual std::string GetPageThumbnailData(const GURL& url) OVERRIDE;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(AwDevToolsManagerDelegate);
|
| +};
|
| +
|
| +} // namespace android_webview
|
| +
|
| +#endif // ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_MANAGER_DELEGATE_H_
|
|
|