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

Side by Side Diff: chrome/browser/devtools/chrome_devtools_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, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_
6 #define CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_ 6 #define CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/devtools/devtools_network_protocol_handler.h" 11 #include "chrome/browser/devtools/devtools_network_protocol_handler.h"
12 #include "content/public/browser/devtools_manager_delegate.h" 12 #include "content/public/browser/devtools_manager_delegate.h"
13 13
14 class ChromeDevToolsManagerDelegate : public content::DevToolsManagerDelegate { 14 class ChromeDevToolsManagerDelegate : public content::DevToolsManagerDelegate {
15 public: 15 public:
16 ChromeDevToolsManagerDelegate(); 16 ChromeDevToolsManagerDelegate();
17 ~ChromeDevToolsManagerDelegate() override; 17 ~ChromeDevToolsManagerDelegate() override;
18 18
19 // content::DevToolsManagerDelegate implementation. 19 // content::DevToolsManagerDelegate implementation.
20 void Inspect(content::BrowserContext* browser_context, 20 void Inspect(content::BrowserContext* browser_context,
21 content::DevToolsAgentHost* agent_host) override; 21 content::DevToolsAgentHost* agent_host) override;
22 void DevToolsAgentStateChanged(content::DevToolsAgentHost* agent_host, 22 void DevToolsAgentStateChanged(content::DevToolsAgentHost* agent_host,
23 bool attached) override; 23 bool attached) override;
24 base::DictionaryValue* HandleCommand( 24 base::DictionaryValue* HandleCommand(
25 content::DevToolsAgentHost* agent_host, 25 content::DevToolsAgentHost* agent_host,
26 base::DictionaryValue* command_dict) override; 26 base::DictionaryValue* command_dict) override;
27 scoped_ptr<content::DevToolsTarget> CreateNewTarget(const GURL& url) override;
28 void EnumerateTargets(TargetCallback callback) override;
29 std::string GetPageThumbnailData(const GURL& url) override;
30 27
31 private: 28 private:
32 scoped_ptr<DevToolsNetworkProtocolHandler> network_protocol_handler_; 29 scoped_ptr<DevToolsNetworkProtocolHandler> network_protocol_handler_;
33 30
34 DISALLOW_COPY_AND_ASSIGN(ChromeDevToolsManagerDelegate); 31 DISALLOW_COPY_AND_ASSIGN(ChromeDevToolsManagerDelegate);
35 }; 32 };
36 33
37 #endif // CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_ 34 #endif // CHROME_BROWSER_DEVTOOLS_CHROME_DEVTOOLS_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/devtools/BUILD.gn ('k') | chrome/browser/devtools/chrome_devtools_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698