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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ViewportControl.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/ViewportControl.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ViewportControl.js b/third_party/WebKit/Source/devtools/front_end/ui/ViewportControl.js
index 765e8a0a658ef6364cefbf92f5eadab83a05c78a..f8586e755e4db9f881812696ee9da2e67cc7e491 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ViewportControl.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ViewportControl.js
@@ -66,14 +66,14 @@ WebInspector.ViewportControl = function(provider)
// if they change the scroll height.
this._observer = new MutationObserver(this.refresh.bind(this));
this._observerConfig = { childList: true, subtree: true };
-}
+};
/**
* @interface
*/
WebInspector.ViewportControl.Provider = function()
{
-}
+};
WebInspector.ViewportControl.Provider.prototype = {
/**
@@ -97,12 +97,12 @@ WebInspector.ViewportControl.Provider.prototype = {
* @return {?WebInspector.ViewportElement}
*/
itemElement: function(index) { return null; }
-}
+};
/**
* @interface
*/
-WebInspector.ViewportElement = function() { }
+WebInspector.ViewportElement = function() { };
WebInspector.ViewportElement.prototype = {
willHide: function() { },
@@ -112,7 +112,7 @@ WebInspector.ViewportElement.prototype = {
* @return {!Element}
*/
element: function() { },
-}
+};
/**
* @constructor
@@ -122,7 +122,7 @@ WebInspector.ViewportElement.prototype = {
WebInspector.StaticViewportElement = function(element)
{
this._element = element;
-}
+};
WebInspector.StaticViewportElement.prototype = {
/**
@@ -143,7 +143,7 @@ WebInspector.StaticViewportElement.prototype = {
{
return this._element;
},
-}
+};
WebInspector.ViewportControl.prototype = {
/**
@@ -666,4 +666,4 @@ WebInspector.ViewportControl.prototype = {
// Use offsetHeight instead of clientHeight to avoid being affected by horizontal scroll.
return this.element.offsetHeight;
}
-}
+};
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/View.js ('k') | third_party/WebKit/Source/devtools/front_end/ui/Widget.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698