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

Unified Diff: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.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/host/InspectorFrontendHost.js
diff --git a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
index 551509c387469b2067a2305b2a41b94ee645449a..db265278b540c4e6c39189125cbcf83d74ac6799 100644
--- a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
+++ b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
@@ -46,7 +46,7 @@ WebInspector.InspectorFrontendHostStub = function()
event.stopPropagation();
}
document.addEventListener("keydown", stopEventPropagation, true);
-}
+};
WebInspector.InspectorFrontendHostStub.prototype = {
/**
@@ -558,7 +558,7 @@ window.InspectorFrontendHost = InspectorFrontendHost;
{
WebInspector.ResourceLoader.streamWrite(id, chunk);
}
- }
+ };
// FIXME: This file is included into both apps, since the devtools_app needs the InspectorFrontendHostAPI only,
// so the host instance should not initialized there.

Powered by Google App Engine
This is Rietveld 408576698