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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/ApplicationCacheModel.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/sdk/ApplicationCacheModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ApplicationCacheModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ApplicationCacheModel.js
index b7bb94c949215550e9c2fb6555bd9f43c78703da..5ce96af49a1be33a8086be053be50b689abeef54 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/ApplicationCacheModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/ApplicationCacheModel.js
@@ -48,7 +48,7 @@ WebInspector.ApplicationCacheModel = function(target, resourceTreeModel)
this._mainFrameNavigated();
this._onLine = true;
-}
+};
/** @enum {symbol} */
WebInspector.ApplicationCacheModel.Events = {
@@ -57,7 +57,7 @@ WebInspector.ApplicationCacheModel.Events = {
FrameManifestRemoved: Symbol("FrameManifestRemoved"),
FrameManifestsReset: Symbol("FrameManifestsReset"),
NetworkStateChanged: Symbol("NetworkStateChanged")
-}
+};
WebInspector.ApplicationCacheModel.prototype = {
_frameNavigated: function(event)
@@ -237,7 +237,7 @@ WebInspector.ApplicationCacheModel.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};
/**
* @constructor
@@ -246,7 +246,7 @@ WebInspector.ApplicationCacheModel.prototype = {
WebInspector.ApplicationCacheDispatcher = function(applicationCacheModel)
{
this._applicationCacheModel = applicationCacheModel;
-}
+};
WebInspector.ApplicationCacheDispatcher.prototype = {
/**
@@ -268,7 +268,7 @@ WebInspector.ApplicationCacheDispatcher.prototype = {
{
this._applicationCacheModel._networkStateUpdated(isNowOnline);
}
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -277,4 +277,4 @@ WebInspector.ApplicationCacheDispatcher.prototype = {
WebInspector.ApplicationCacheModel.fromTarget = function(target)
{
return /** @type {?WebInspector.ApplicationCacheModel} */ (target.model(WebInspector.ApplicationCacheModel));
-}
+};

Powered by Google App Engine
This is Rietveld 408576698