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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js

Issue 2537223003: [DevTools] Introduce Project.isServiceProject method. (Closed)
Patch Set: rebased Created 4 years 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/bindings/CompilerScriptMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
index 320eb1cdb6e1a25c65381d381dfaaee1c8139041..085c4a467bc7a2d01b46da94632f7d405af49331 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
@@ -57,8 +57,8 @@ Bindings.CompilerScriptMapping = class {
this._stubUISourceCodes = new Map();
var projectId = Bindings.CompilerScriptMapping.projectIdForTarget(this._target);
- this._stubProject =
- new Bindings.ContentProviderBasedProject(workspace, projectId, Workspace.projectTypes.Service, '');
+ this._stubProject = new Bindings.ContentProviderBasedProject(
+ workspace, projectId, Workspace.projectTypes.Service, '', true /* isServiceProject */);
this._eventListeners = [
workspace.addEventListener(
Workspace.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this),

Powered by Google App Engine
This is Rietveld 408576698