Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2271)

Unified Diff: android_webview/browser/aw_dev_tools_manager_delegate.h

Issue 1114503002: [DevTools] Cleanup DevToolsTarget and DevToolsManagerDelegate after moving to devtools_discovery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@devtools-discovery-chrome
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
deleted file mode 100644
index 52b7c85fc143ac86d013ea16f3805ba7da8b5c8c..0000000000000000000000000000000000000000
--- a/android_webview/browser/aw_dev_tools_manager_delegate.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// 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 {
-
-// TODO(dgozman): remove this class after componentization of devtools_discovery
-// is finished.
-class AwDevToolsManagerDelegate : public content::DevToolsManagerDelegate {
- public:
- AwDevToolsManagerDelegate();
- ~AwDevToolsManagerDelegate() override;
-
- // content::DevToolsManagerDelegate implementation.
- void Inspect(content::BrowserContext* browser_context,
- content::DevToolsAgentHost* agent_host) override {}
- void DevToolsAgentStateChanged(content::DevToolsAgentHost* agent_host,
- bool attached) override {}
- base::DictionaryValue* HandleCommand(
- content::DevToolsAgentHost* agent_host,
- base::DictionaryValue* command_dict) override;
- scoped_ptr<content::DevToolsTarget> CreateNewTarget(const GURL& url) override;
- void EnumerateTargets(TargetCallback callback) override;
- 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_
« no previous file with comments | « android_webview/browser/aw_content_browser_client.cc ('k') | android_webview/browser/aw_dev_tools_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698