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

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

Issue 10946043: Change text in keyboard overlay from fullscreen to maximize (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix for Alt & Ctrl Created 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/keyboard_overlay_data.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <include src="keyboard_overlay_data.js"/> 5 <include src="keyboard_overlay_data.js"/>
6 <include src="keyboard_overlay_accessibility_helper.js"/> 6 <include src="keyboard_overlay_accessibility_helper.js"/>
7 7
8 var BASE_KEYBOARD = { 8 var BASE_KEYBOARD = {
9 top: 0, 9 top: 0,
10 left: 0, 10 left: 0,
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 104: '8', 67 104: '8',
68 105: '9', 68 105: '9',
69 106: '*', 69 106: '*',
70 107: '+', 70 107: '+',
71 109: '-', 71 109: '-',
72 110: '.', 72 110: '.',
73 111: '/', 73 111: '/',
74 112: 'back', 74 112: 'back',
75 113: 'forward', 75 113: 'forward',
76 114: 'reload', 76 114: 'reload',
77 115: 'full screen', 77 115: 'maximize',
78 116: 'switch window', 78 116: 'switch window',
79 117: 'bright down', 79 117: 'bright down',
80 118: 'bright up', 80 118: 'bright up',
81 119: 'mute', 81 119: 'mute',
82 120: 'vol. down', 82 120: 'vol. down',
83 121: 'vol. up', 83 121: 'vol. up',
84 186: ';', 84 186: ';',
85 187: '+', 85 187: '+',
86 188: ',', 86 188: ',',
87 189: '-', 87 189: '-',
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 * Handles click events of the learn more link. 599 * Handles click events of the learn more link.
600 * @param {Event} e Mouse click event. 600 * @param {Event} e Mouse click event.
601 */ 601 */
602 function learnMoreClicked(e) { 602 function learnMoreClicked(e) {
603 chrome.send('openLearnMorePage'); 603 chrome.send('openLearnMorePage');
604 chrome.send('DialogClose'); 604 chrome.send('DialogClose');
605 e.preventDefault(); 605 e.preventDefault();
606 } 606 }
607 607
608 document.addEventListener('DOMContentLoaded', init); 608 document.addEventListener('DOMContentLoaded', init);
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/keyboard_overlay_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698