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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/ShortcutsScreen.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/components/ShortcutsScreen.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/ShortcutsScreen.js b/third_party/WebKit/Source/devtools/front_end/components/ShortcutsScreen.js
index 36dec89c4f4ec02538af951697e6cd2087af6526..c701cf82e3dbb0c238c77084aa37021295672d62 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/ShortcutsScreen.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/ShortcutsScreen.js
@@ -35,7 +35,7 @@ WebInspector.ShortcutsScreen = function()
{
/** @type {!Object.<string, !WebInspector.ShortcutsSection>} */
this._sections = {};
-}
+};
WebInspector.ShortcutsScreen.prototype = {
/**
@@ -79,7 +79,7 @@ WebInspector.ShortcutsScreen.prototype = {
return widget;
}
-}
+};
/**
* We cannot initialize it here as localized strings are not loaded yet.
@@ -207,7 +207,7 @@ WebInspector.ShortcutsSection.prototype = {
}
return result;
}
-}
+};
WebInspector.ShortcutsScreen.registerShortcuts = function()
{
@@ -301,7 +301,7 @@ WebInspector.ShortcutsScreen.registerShortcuts = function()
section.addRelatedKeys(WebInspector.ShortcutsScreen.LayersPanelShortcuts.Up.concat(WebInspector.ShortcutsScreen.LayersPanelShortcuts.Down), WebInspector.UIString("Pan or rotate up/down"));
section.addRelatedKeys(WebInspector.ShortcutsScreen.LayersPanelShortcuts.Left.concat(WebInspector.ShortcutsScreen.LayersPanelShortcuts.Right), WebInspector.UIString("Pan or rotate left/right"));
}
-}
+};
WebInspector.ShortcutsScreen.ElementsPanelShortcuts = {
NavigateUp: [
@@ -506,4 +506,4 @@ WebInspector.ShortcutsScreen.LayersPanelShortcuts = {
WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Right),
WebInspector.KeyboardShortcut.makeDescriptor("d")
]
-}
+};

Powered by Google App Engine
This is Rietveld 408576698