| 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
|
|
|