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

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

Issue 2827183003: Revert of [DevTools] Consolidate overlay-related functionality in Overlay domain (Closed)
Patch Set: Created 3 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 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_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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 } 77 }
78 namespace network { 78 namespace network {
79 class Domain; 79 class Domain;
80 } 80 }
81 namespace page { 81 namespace page {
82 class Domain; 82 class Domain;
83 } 83 }
84 namespace profiler { 84 namespace profiler {
85 class Domain; 85 class Domain;
86 } 86 }
87 namespace rendering {
88 class Domain;
89 }
87 namespace runtime { 90 namespace runtime {
88 class Domain; 91 class Domain;
89 } 92 }
90 namespace security { 93 namespace security {
91 class Domain; 94 class Domain;
92 } 95 }
93 namespace service_worker { 96 namespace service_worker {
94 class Domain; 97 class Domain;
95 } 98 }
96 namespace target { 99 namespace target {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 virtual indexeddb::Domain* GetIndexedDB() = 0; 132 virtual indexeddb::Domain* GetIndexedDB() = 0;
130 virtual input::Domain* GetInput() = 0; 133 virtual input::Domain* GetInput() = 0;
131 virtual inspector::Domain* GetInspector() = 0; 134 virtual inspector::Domain* GetInspector() = 0;
132 virtual io::Domain* GetIO() = 0; 135 virtual io::Domain* GetIO() = 0;
133 virtual layer_tree::Domain* GetLayerTree() = 0; 136 virtual layer_tree::Domain* GetLayerTree() = 0;
134 virtual log::Domain* GetLog() = 0; 137 virtual log::Domain* GetLog() = 0;
135 virtual memory::Domain* GetMemory() = 0; 138 virtual memory::Domain* GetMemory() = 0;
136 virtual network::Domain* GetNetwork() = 0; 139 virtual network::Domain* GetNetwork() = 0;
137 virtual page::Domain* GetPage() = 0; 140 virtual page::Domain* GetPage() = 0;
138 virtual profiler::Domain* GetProfiler() = 0; 141 virtual profiler::Domain* GetProfiler() = 0;
142 virtual rendering::Domain* GetRendering() = 0;
139 virtual runtime::Domain* GetRuntime() = 0; 143 virtual runtime::Domain* GetRuntime() = 0;
140 virtual security::Domain* GetSecurity() = 0; 144 virtual security::Domain* GetSecurity() = 0;
141 virtual service_worker::Domain* GetServiceWorker() = 0; 145 virtual service_worker::Domain* GetServiceWorker() = 0;
142 virtual target::Domain* GetTarget() = 0; 146 virtual target::Domain* GetTarget() = 0;
143 virtual tracing::Domain* GetTracing() = 0; 147 virtual tracing::Domain* GetTracing() = 0;
144 148
145 class HEADLESS_EXPORT RawProtocolListener { 149 class HEADLESS_EXPORT RawProtocolListener {
146 public: 150 public:
147 RawProtocolListener() {} 151 RawProtocolListener() {}
148 virtual ~RawProtocolListener() {} 152 virtual ~RawProtocolListener() {}
(...skipping 24 matching lines...) Expand all
173 friend class HeadlessDevToolsClientImpl; 177 friend class HeadlessDevToolsClientImpl;
174 178
175 HeadlessDevToolsClient() {} 179 HeadlessDevToolsClient() {}
176 180
177 DISALLOW_COPY_AND_ASSIGN(HeadlessDevToolsClient); 181 DISALLOW_COPY_AND_ASSIGN(HeadlessDevToolsClient);
178 }; 182 };
179 183
180 } // namespace headless 184 } // namespace headless
181 185
182 #endif // HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_ 186 #endif // HEADLESS_PUBLIC_HEADLESS_DEVTOOLS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698