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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Context.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/ui/Context.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Context.js b/third_party/WebKit/Source/devtools/front_end/ui/Context.js
index df09297d604ec9ce130600145be1544212badbb1..27addaf839fdf1d3ba31eda9e06e8c3659d26af5 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Context.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Context.js
@@ -9,12 +9,12 @@ WebInspector.Context = function()
{
this._flavors = new Map();
this._eventDispatchers = new Map();
-}
+};
/** @enum {symbol} */
WebInspector.Context.Events = {
FlavorChanged: Symbol("FlavorChanged")
-}
+};
WebInspector.Context.prototype = {
/**
@@ -116,18 +116,18 @@ WebInspector.Context.prototype = {
return targetExtensionSet;
}
-}
+};
/**
* @interface
*/
-WebInspector.ContextFlavorListener = function() { }
+WebInspector.ContextFlavorListener = function() { };
WebInspector.ContextFlavorListener.prototype = {
/**
* @param {?Object} object
*/
flavorChanged: function(object) { }
-}
+};
WebInspector.context = new WebInspector.Context();

Powered by Google App Engine
This is Rietveld 408576698