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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/Frontend.cpp

Issue 2012753003: DevTools: consolidate protocol generators for front-end, backend and type builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/inspector_protocol/Frontend.cpp
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/Frontend.cpp b/third_party/WebKit/Source/platform/inspector_protocol/Frontend.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..6480bc061c2c8d3d88a36c5a1f47cbfc2076021d
--- /dev/null
+++ b/third_party/WebKit/Source/platform/inspector_protocol/Frontend.cpp
@@ -0,0 +1,48 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/inspector_protocol/Frontend.h"
+
+#include "platform/inspector_protocol/String16.h"
+
+namespace blink {
+namespace protocol {
+
+Frontend::Frontend(FrontendChannel* frontendChannel)
+ : m_frontendChannel(frontendChannel)
+ , m_accessibility(frontendChannel)
+ , m_animation(frontendChannel)
+ , m_applicationcache(frontendChannel)
+ , m_cachestorage(frontendChannel)
+ , m_console(frontendChannel)
+ , m_css(frontendChannel)
+ , m_database(frontendChannel)
+ , m_debugger(frontendChannel)
+ , m_deviceorientation(frontendChannel)
+ , m_domdebugger(frontendChannel)
+ , m_dom(frontendChannel)
+ , m_domstorage(frontendChannel)
+ , m_emulation(frontendChannel)
+ , m_heapprofiler(frontendChannel)
+ , m_indexeddb(frontendChannel)
+ , m_input(frontendChannel)
+ , m_inspector(frontendChannel)
+ , m_io(frontendChannel)
+ , m_layertree(frontendChannel)
+ , m_memory(frontendChannel)
+ , m_network(frontendChannel)
+ , m_page(frontendChannel)
+ , m_profiler(frontendChannel)
+ , m_rendering(frontendChannel)
+ , m_runtime(frontendChannel)
+ , m_security(frontendChannel)
+ , m_serviceworker(frontendChannel)
+ , m_storage(frontendChannel)
+ , m_tracing(frontendChannel)
+ , m_worker(frontendChannel)
+{
+}
+
+} // namespace protocol
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698