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

Side by Side Diff: headless/lib/browser/headless_devtools_manager_delegate.h

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for_landing! Created 4 years, 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_ 5 #ifndef HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_
6 #define HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_ 6 #define HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_
7 7
8 #include "content/public/browser/devtools_manager_delegate.h" 8 #include "content/public/browser/devtools_manager_delegate.h"
9 9
10 #include <map> 10 #include <map>
(...skipping 14 matching lines...) Expand all
25 explicit HeadlessDevToolsManagerDelegate( 25 explicit HeadlessDevToolsManagerDelegate(
26 base::WeakPtr<HeadlessBrowserImpl> browser); 26 base::WeakPtr<HeadlessBrowserImpl> browser);
27 ~HeadlessDevToolsManagerDelegate() override; 27 ~HeadlessDevToolsManagerDelegate() override;
28 28
29 // DevToolsManagerDelegate implementation: 29 // DevToolsManagerDelegate implementation:
30 void Inspect(content::DevToolsAgentHost* agent_host) override {} 30 void Inspect(content::DevToolsAgentHost* agent_host) override {}
31 void DevToolsAgentStateChanged(content::DevToolsAgentHost* agent_host, 31 void DevToolsAgentStateChanged(content::DevToolsAgentHost* agent_host,
32 bool attached) override{}; 32 bool attached) override{};
33 base::DictionaryValue* HandleCommand(content::DevToolsAgentHost* agent_host, 33 base::DictionaryValue* HandleCommand(content::DevToolsAgentHost* agent_host,
34 base::DictionaryValue* command) override; 34 base::DictionaryValue* command) override;
35 std::string GetTargetType(content::RenderFrameHost* host) override; 35 std::string GetDiscoveryPageHTML() override;
36 std::string GetTargetTitle(content::RenderFrameHost* host) override; 36 std::string GetFrontendResource(const std::string& path) override;
37 scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
38 const GURL& url) override;
39 37
40 private: 38 private:
41 std::unique_ptr<base::Value> CreateTarget( 39 std::unique_ptr<base::Value> CreateTarget(
42 const base::DictionaryValue* params); 40 const base::DictionaryValue* params);
43 std::unique_ptr<base::Value> CloseTarget(const base::DictionaryValue* params); 41 std::unique_ptr<base::Value> CloseTarget(const base::DictionaryValue* params);
44 std::unique_ptr<base::Value> CreateBrowserContext( 42 std::unique_ptr<base::Value> CreateBrowserContext(
45 const base::DictionaryValue* params); 43 const base::DictionaryValue* params);
46 std::unique_ptr<base::Value> DisposeBrowserContext( 44 std::unique_ptr<base::Value> DisposeBrowserContext(
47 const base::DictionaryValue* params); 45 const base::DictionaryValue* params);
48 46
49 base::WeakPtr<HeadlessBrowserImpl> browser_; 47 base::WeakPtr<HeadlessBrowserImpl> browser_;
50 48
51 using CommandMemberFnPtr = std::unique_ptr<base::Value> ( 49 using CommandMemberFnPtr = std::unique_ptr<base::Value> (
52 HeadlessDevToolsManagerDelegate::*)(const base::DictionaryValue* params); 50 HeadlessDevToolsManagerDelegate::*)(const base::DictionaryValue* params);
53 51
54 std::map<std::string, CommandMemberFnPtr> command_map_; 52 std::map<std::string, CommandMemberFnPtr> command_map_;
55 53
56 HeadlessBrowserContext* default_browser_context_; 54 HeadlessBrowserContext* default_browser_context_;
57 }; 55 };
58 56
59 } // namespace headless 57 } // namespace headless
60 58
61 #endif // HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_ 59 #endif // HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « headless/lib/browser/headless_devtools.cc ('k') | headless/lib/browser/headless_devtools_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698