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") |
] |
-} |
+}; |