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

Unified Diff: third_party/WebKit/Source/devtools/front_end/Runtime.js

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 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/devtools/front_end/Runtime.js
diff --git a/third_party/WebKit/Source/devtools/front_end/Runtime.js b/third_party/WebKit/Source/devtools/front_end/Runtime.js
index 0eefa745ff9b39d3936399c918f9b7a1548ef4d7..1e8f5a10fce80d9c4cfdc9feb7245ab4571897f7 100644
--- a/third_party/WebKit/Source/devtools/front_end/Runtime.js
+++ b/third_party/WebKit/Source/devtools/front_end/Runtime.js
@@ -772,13 +772,14 @@ Runtime.Module = class {
if (!this._descriptor.scripts || !this._descriptor.scripts.length)
return Promise.resolve();
- // the namespace keyword confuses clang-format
- // NOTE: Update scripts/special_case_namespaces.json if you add a special cased namespace
- // clang-format off
// Module namespaces.
+ // NOTE: Update scripts/special_case_namespaces.json if you add a special cased namespace.
+ // The namespace keyword confuses clang-format.
+ // clang-format off
const specialCases = {
'sdk': 'SDK',
'ui': 'UI',
+ 'object_ui': 'ObjectUI',
'perf_ui': 'PerfUI',
'css_tracker': 'CSSTracker'
};

Powered by Google App Engine
This is Rietveld 408576698