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

Side by Side Diff: Source/devtools/front_end/ScriptsPanelDescriptor.js

Issue 23474010: DevTools: "Jump between editing locations" experiment (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 ], 108 ],
109 109
110 EvaluateSelectionInConsole: [ 110 EvaluateSelectionInConsole: [
111 WebInspector.KeyboardShortcut.makeDescriptor("e", WebInspector.KeyboardS hortcut.Modifiers.Shift | WebInspector.KeyboardShortcut.Modifiers.Ctrl) 111 WebInspector.KeyboardShortcut.makeDescriptor("e", WebInspector.KeyboardS hortcut.Modifiers.Shift | WebInspector.KeyboardShortcut.Modifiers.Ctrl)
112 ], 112 ],
113 113
114 GoToMember: [ 114 GoToMember: [
115 WebInspector.KeyboardShortcut.makeDescriptor("o", WebInspector.KeyboardS hortcut.Modifiers.CtrlOrMeta | WebInspector.KeyboardShortcut.Modifiers.Shift) 115 WebInspector.KeyboardShortcut.makeDescriptor("o", WebInspector.KeyboardS hortcut.Modifiers.CtrlOrMeta | WebInspector.KeyboardShortcut.Modifiers.Shift)
116 ], 116 ],
117 117
118 JumpToPreviousPosition: [
119 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Minus, WebInspector.KeyboardShortcut.Modifiers.Alt)
120 ],
121
122 JumpToNextPosition: [
123 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Plus, WebInspector.KeyboardShortcut.Modifiers.Alt)
124 ],
125
118 ToggleBreakpoint: [ 126 ToggleBreakpoint: [
119 WebInspector.KeyboardShortcut.makeDescriptor("b", WebInspector.KeyboardS hortcut.Modifiers.CtrlOrMeta) 127 WebInspector.KeyboardShortcut.makeDescriptor("b", WebInspector.KeyboardS hortcut.Modifiers.CtrlOrMeta)
120 ], 128 ],
121 129
122 NextCallFrame: [ 130 NextCallFrame: [
123 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Period, WebInspector.KeyboardShortcut.Modifiers.Ctrl) 131 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Period, WebInspector.KeyboardShortcut.Modifiers.Ctrl)
124 ], 132 ],
125 133
126 PrevCallFrame: [ 134 PrevCallFrame: [
127 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Comma, WebInspector.KeyboardShortcut.Modifiers.Ctrl) 135 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Comma, WebInspector.KeyboardShortcut.Modifiers.Ctrl)
128 ], 136 ],
129 137
130 ToggleComment: [ 138 ToggleComment: [
131 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Slash, WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta) 139 WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortc ut.Keys.Slash, WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta)
132 140
133 ] 141 ]
134 }; 142 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698