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

Side by Side Diff: chrome/browser/resources/chromeos/keyboard_overlay_data.js

Issue 11280153: Add Search-. as a shortcut for the Insert key when Search is acting as a Function key. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var keyboardOverlayData = { 5 var keyboardOverlayData = {
6 'inputMethodIdToOverlayId': { 6 'inputMethodIdToOverlayId': {
7 'm17n:ar:kbd': 'ar', 7 'm17n:ar:kbd': 'ar',
8 'm17n:fa:isiri': 'ar', 8 'm17n:fa:isiri': 'ar',
9 'm17n:hi:itrans': 'hi', 9 'm17n:hi:itrans': 'hi',
10 'm17n:th:kesmanee': 'th', 10 'm17n:th:kesmanee': 'th',
(...skipping 15879 matching lines...) Expand 10 before | Expand all | Expand 10 after
15890 '7<>SEARCH': 'keyboardOverlayF7', 15890 '7<>SEARCH': 'keyboardOverlayF7',
15891 '8<>SEARCH': 'keyboardOverlayF8', 15891 '8<>SEARCH': 'keyboardOverlayF8',
15892 '9<>SEARCH': 'keyboardOverlayF9', 15892 '9<>SEARCH': 'keyboardOverlayF9',
15893 '0<>SEARCH': 'keyboardOverlayF10', 15893 '0<>SEARCH': 'keyboardOverlayF10',
15894 '-<>SEARCH': 'keyboardOverlayF11', 15894 '-<>SEARCH': 'keyboardOverlayF11',
15895 '=<>SEARCH': 'keyboardOverlayF12', 15895 '=<>SEARCH': 'keyboardOverlayF12',
15896 'backspace<>SEARCH': 'keyboardOverlayDelete', 15896 'backspace<>SEARCH': 'keyboardOverlayDelete',
15897 'down<>SEARCH': 'keyboardOverlayPageDown', 15897 'down<>SEARCH': 'keyboardOverlayPageDown',
15898 'right<>SEARCH': 'keyboardOverlayEnd', 15898 'right<>SEARCH': 'keyboardOverlayEnd',
15899 'up<>SEARCH': 'keyboardOverlayPageUp', 15899 'up<>SEARCH': 'keyboardOverlayPageUp',
15900 'left<>SEARCH': 'keyboardOverlayHome' 15900 'left<>SEARCH': 'keyboardOverlayHome',
15901 '\\<>SEARCH': 'keyboardOverlayInsert'
15901 } 15902 }
15902 }; 15903 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698