| Index: content/browser/devtools/protocol/schema_handler.cc
|
| diff --git a/content/browser/devtools/protocol/schema_handler.cc b/content/browser/devtools/protocol/schema_handler.cc
|
| index 6cf5b21db2518327f79d91799310454d9822e705..f4f862cb7c23c3e40d8c31518dd7cd9c60fea2de 100644
|
| --- a/content/browser/devtools/protocol/schema_handler.cc
|
| +++ b/content/browser/devtools/protocol/schema_handler.cc
|
| @@ -22,14 +22,37 @@ Response SchemaHandler::GetDomains(
|
| std::unique_ptr<protocol::Array<Schema::Domain>>* domains) {
|
| // TODO(kozyatisnkiy): get this from the target instead of hardcoding a list.
|
| static const char kVersion[] = "1.2";
|
| - static const char* kDomains[] = {
|
| - "Inspector", "Memory", "Page", "Rendering", "Emulation", "Security",
|
| - "Network", "Database", "IndexedDB", "CacheStorage", "DOMStorage", "CSS",
|
| - "ApplicationCache", "DOM", "IO", "DOMDebugger", "ServiceWorker",
|
| - "Input", "LayerTree", "DeviceOrientation", "Tracing", "Animation",
|
| - "Accessibility", "Storage", "Log", "Runtime", "Debugger",
|
| - "Profiler", "HeapProfiler", "Schema", "Target"
|
| - };
|
| + static const char* kDomains[] = {"Inspector",
|
| + "Memory",
|
| + "Page",
|
| + "Emulation",
|
| + "Security",
|
| + "Network",
|
| + "Database",
|
| + "IndexedDB",
|
| + "CacheStorage",
|
| + "DOMStorage",
|
| + "CSS",
|
| + "ApplicationCache",
|
| + "DOM",
|
| + "IO",
|
| + "DOMDebugger",
|
| + "ServiceWorker",
|
| + "Input",
|
| + "LayerTree",
|
| + "DeviceOrientation",
|
| + "Tracing",
|
| + "Animation",
|
| + "Accessibility",
|
| + "Storage",
|
| + "Log",
|
| + "Runtime",
|
| + "Debugger",
|
| + "Profiler",
|
| + "HeapProfiler",
|
| + "Schema",
|
| + "Target",
|
| + "Overlay"};
|
| *domains = protocol::Array<Schema::Domain>::create();
|
| for (size_t i = 0; i < arraysize(kDomains); ++i) {
|
| (*domains)->addItem(Schema::Domain::Create()
|
|
|