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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "platform/inspector_protocol/Frontend.h"
6
7 #include "platform/inspector_protocol/String16.h"
8
9 namespace blink {
10 namespace protocol {
11
12 Frontend::Frontend(FrontendChannel* frontendChannel)
13 : m_frontendChannel(frontendChannel)
14 , m_accessibility(frontendChannel)
15 , m_animation(frontendChannel)
16 , m_applicationcache(frontendChannel)
17 , m_cachestorage(frontendChannel)
18 , m_console(frontendChannel)
19 , m_css(frontendChannel)
20 , m_database(frontendChannel)
21 , m_debugger(frontendChannel)
22 , m_deviceorientation(frontendChannel)
23 , m_domdebugger(frontendChannel)
24 , m_dom(frontendChannel)
25 , m_domstorage(frontendChannel)
26 , m_emulation(frontendChannel)
27 , m_heapprofiler(frontendChannel)
28 , m_indexeddb(frontendChannel)
29 , m_input(frontendChannel)
30 , m_inspector(frontendChannel)
31 , m_io(frontendChannel)
32 , m_layertree(frontendChannel)
33 , m_memory(frontendChannel)
34 , m_network(frontendChannel)
35 , m_page(frontendChannel)
36 , m_profiler(frontendChannel)
37 , m_rendering(frontendChannel)
38 , m_runtime(frontendChannel)
39 , m_security(frontendChannel)
40 , m_serviceworker(frontendChannel)
41 , m_storage(frontendChannel)
42 , m_tracing(frontendChannel)
43 , m_worker(frontendChannel)
44 {
45 }
46
47 } // namespace protocol
48 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698