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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/ExecutionContextSelector.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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/components/ExecutionContextSelector.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/ExecutionContextSelector.js b/third_party/WebKit/Source/devtools/front_end/components/ExecutionContextSelector.js
index 5b9387f2e0f8f1845f33f263be2bba18ad450453..fd6a6a4a1c6ff97604a7cf0d62d2c7dbafb88620 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/ExecutionContextSelector.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/ExecutionContextSelector.js
@@ -19,7 +19,7 @@ WebInspector.ExecutionContextSelector = function(targetManager, context)
targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextOrderChanged, this._onExecutionContextOrderChanged, this);
this._targetManager = targetManager;
this._context = context;
-}
+};
WebInspector.ExecutionContextSelector.prototype = {
@@ -212,7 +212,7 @@ WebInspector.ExecutionContextSelector.prototype = {
this._context.setFlavor(WebInspector.ExecutionContext, newContext);
this._ignoreContextChanged = false;
}
-}
+};
/**
* @param {!Element} proxyElement
@@ -226,7 +226,7 @@ WebInspector.ExecutionContextSelector.completionsForTextPromptInCurrentContext =
expressionRange.collapse(true);
expressionRange.setStartBefore(proxyElement);
WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext(expressionRange.toString(), wordRange.toString(), force, completionsReadyCallback);
-}
+};
/**
* @param {string} text
* @param {string} completionsPrefix
@@ -266,4 +266,4 @@ WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext = funct
clippedExpression = clippedExpression.substring(index + 1);
executionContext.completionsForExpression(clippedExpression, completionsPrefix, force, completionsReadyCallback);
-}
+};

Powered by Google App Engine
This is Rietveld 408576698