Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 #ifndef Frontend_h | |
| 6 #define Frontend_h | |
| 7 | |
| 8 #include "platform/inspector_protocol/FrontendChannel.h" | |
| 9 #include "platform/inspector_protocol/TypeBuilder.h" | |
| 10 #include "platform/inspector_protocol/Values.h" | |
| 11 | |
| 12 namespace blink { | |
| 13 namespace protocol { | |
| 14 | |
| 15 class PLATFORM_EXPORT Frontend { | |
|
dgozman
2016/05/26 20:55:30
Why don't we generate this one? Why do we even nee
| |
| 16 public: | |
| 17 explicit Frontend(FrontendChannel*); | |
| 18 FrontendChannel* channel() { return m_frontendChannel; } | |
| 19 | |
| 20 private: | |
| 21 FrontendChannel* m_frontendChannel; | |
| 22 | |
| 23 public: | |
| 24 Accessibility::Frontend m_accessibility; | |
| 25 Animation::Frontend m_animation; | |
| 26 ApplicationCache::Frontend m_applicationcache; | |
| 27 CacheStorage::Frontend m_cachestorage; | |
| 28 Console::Frontend m_console; | |
| 29 CSS::Frontend m_css; | |
| 30 Database::Frontend m_database; | |
| 31 Debugger::Frontend m_debugger; | |
| 32 DeviceOrientation::Frontend m_deviceorientation; | |
| 33 DOMDebugger::Frontend m_domdebugger; | |
| 34 DOM::Frontend m_dom; | |
| 35 DOMStorage::Frontend m_domstorage; | |
| 36 Emulation::Frontend m_emulation; | |
| 37 HeapProfiler::Frontend m_heapprofiler; | |
| 38 IndexedDB::Frontend m_indexeddb; | |
| 39 Input::Frontend m_input; | |
| 40 Inspector::Frontend m_inspector; | |
| 41 IO::Frontend m_io; | |
| 42 LayerTree::Frontend m_layertree; | |
| 43 Memory::Frontend m_memory; | |
| 44 Network::Frontend m_network; | |
| 45 Page::Frontend m_page; | |
| 46 Profiler::Frontend m_profiler; | |
| 47 Rendering::Frontend m_rendering; | |
| 48 Runtime::Frontend m_runtime; | |
| 49 Security::Frontend m_security; | |
| 50 ServiceWorker::Frontend m_serviceworker; | |
| 51 Storage::Frontend m_storage; | |
| 52 Tracing::Frontend m_tracing; | |
| 53 Worker::Frontend m_worker; | |
| 54 }; | |
| 55 | |
| 56 } // namespace protocol | |
| 57 } // namespace blink | |
| 58 | |
| 59 #endif // !defined(Frontend_h) | |
| OLD | NEW |