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(); |