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

Side by Side Diff: headless/public/headless_devtools_client.h

Issue 2185943003: Support C++ bindings for the DevTools Log Domain in headless_lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « headless/lib/browser/headless_devtools_client_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_ 5 #ifndef HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_
6 #define HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_ 6 #define HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 namespace inspector { 66 namespace inspector {
67 class Domain; 67 class Domain;
68 } 68 }
69 namespace io { 69 namespace io {
70 class Domain; 70 class Domain;
71 } 71 }
72 namespace layer_tree { 72 namespace layer_tree {
73 class Domain; 73 class Domain;
74 } 74 }
75 namespace log {
76 class Domain;
77 }
75 namespace memory { 78 namespace memory {
76 class Domain; 79 class Domain;
77 } 80 }
78 namespace network { 81 namespace network {
79 class Domain; 82 class Domain;
80 } 83 }
81 namespace page { 84 namespace page {
82 class Domain; 85 class Domain;
83 } 86 }
84 namespace profiler { 87 namespace profiler {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 virtual dom::Domain* GetDOM() = 0; 131 virtual dom::Domain* GetDOM() = 0;
129 virtual dom_debugger::Domain* GetDOMDebugger() = 0; 132 virtual dom_debugger::Domain* GetDOMDebugger() = 0;
130 virtual dom_storage::Domain* GetDOMStorage() = 0; 133 virtual dom_storage::Domain* GetDOMStorage() = 0;
131 virtual emulation::Domain* GetEmulation() = 0; 134 virtual emulation::Domain* GetEmulation() = 0;
132 virtual heap_profiler::Domain* GetHeapProfiler() = 0; 135 virtual heap_profiler::Domain* GetHeapProfiler() = 0;
133 virtual indexeddb::Domain* GetIndexedDB() = 0; 136 virtual indexeddb::Domain* GetIndexedDB() = 0;
134 virtual input::Domain* GetInput() = 0; 137 virtual input::Domain* GetInput() = 0;
135 virtual inspector::Domain* GetInspector() = 0; 138 virtual inspector::Domain* GetInspector() = 0;
136 virtual io::Domain* GetIO() = 0; 139 virtual io::Domain* GetIO() = 0;
137 virtual layer_tree::Domain* GetLayerTree() = 0; 140 virtual layer_tree::Domain* GetLayerTree() = 0;
141 virtual log::Domain* GetLog() = 0;
138 virtual memory::Domain* GetMemory() = 0; 142 virtual memory::Domain* GetMemory() = 0;
139 virtual network::Domain* GetNetwork() = 0; 143 virtual network::Domain* GetNetwork() = 0;
140 virtual page::Domain* GetPage() = 0; 144 virtual page::Domain* GetPage() = 0;
141 virtual profiler::Domain* GetProfiler() = 0; 145 virtual profiler::Domain* GetProfiler() = 0;
142 virtual rendering::Domain* GetRendering() = 0; 146 virtual rendering::Domain* GetRendering() = 0;
143 virtual runtime::Domain* GetRuntime() = 0; 147 virtual runtime::Domain* GetRuntime() = 0;
144 virtual security::Domain* GetSecurity() = 0; 148 virtual security::Domain* GetSecurity() = 0;
145 virtual service_worker::Domain* GetServiceWorker() = 0; 149 virtual service_worker::Domain* GetServiceWorker() = 0;
146 virtual tracing::Domain* GetTracing() = 0; 150 virtual tracing::Domain* GetTracing() = 0;
147 virtual worker::Domain* GetWorker() = 0; 151 virtual worker::Domain* GetWorker() = 0;
148 152
149 // TODO(skyostil): Add notification for disconnection. 153 // TODO(skyostil): Add notification for disconnection.
150 154
151 private: 155 private:
152 friend class HeadlessDevToolsClientImpl; 156 friend class HeadlessDevToolsClientImpl;
153 157
154 HeadlessDevToolsClient() {} 158 HeadlessDevToolsClient() {}
155 159
156 DISALLOW_COPY_AND_ASSIGN(HeadlessDevToolsClient); 160 DISALLOW_COPY_AND_ASSIGN(HeadlessDevToolsClient);
157 }; 161 };
158 162
159 } // namespace headless 163 } // namespace headless
160 164
161 #endif // HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_ 165 #endif // HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_
OLDNEW
« no previous file with comments | « headless/lib/browser/headless_devtools_client_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698