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

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

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

Powered by Google App Engine
This is Rietveld 408576698