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

Side by Side Diff: chrome/browser/resources/keyboard/layout_fr.js

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing .py files Created 8 years, 8 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 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // This file is generaged by gen_keyboard_layouts.py 5 // This file is generaged by gen_keyboard_layouts.py
6 6
7 var KEYS_FR_POPUP_E = [ 7 var KEYS_FR_POPUP_E = [
8 [ 8 [
9 new PopupKey(C('\u0117', 'U+0117'), C('\u0116', 'U+0116'), 9 new PopupKey(C('\u0117', 'U+0117'), C('\u0116', 'U+0116'),
10 C('\u0117', 'U+0117'), C('\u0117', 'U+0117')), 10 C('\u0117', 'U+0117'), C('\u0117', 'U+0117')),
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 new Key(CP('f'), CP('F'), CP('&'), CP('\u00a5', 'U+00A5')), 59 new Key(CP('f'), CP('F'), CP('&'), CP('\u00a5', 'U+00A5')),
60 new Key(CP('g'), CP('G'), CP('*'), CP('^')), 60 new Key(CP('g'), CP('G'), CP('*'), CP('^')),
61 new Key(CP('h'), CP('H'), CP('-'), CP('\u00b0', 'U+00B0')), 61 new Key(CP('h'), CP('H'), CP('-'), CP('\u00b0', 'U+00B0')),
62 new Key(CP('j'), CP('J'), CP('+', 'Plus'), CP('\u00b1', 'U+00B1')), 62 new Key(CP('j'), CP('J'), CP('+', 'Plus'), CP('\u00b1', 'U+00B1')),
63 new Key(CP('k'), CP('K'), CP('('), CP('{', 'U+007B')), 63 new Key(CP('k'), CP('K'), CP('('), CP('{', 'U+007B')),
64 new Key(CP('l'), CP('L'), CP(')'), CP('}', 'U+007D')), 64 new Key(CP('l'), CP('L'), CP(')'), CP('}', 'U+007D')),
65 new Key(CP('m'), CP('M'), null, null), 65 new Key(CP('m'), CP('M'), null, null),
66 new SvgKey('return', 'Enter'), 66 new SvgKey('return', 'Enter'),
67 ], 67 ],
68 [ 68 [
69 new ShiftKey('left_shift'), 69 new ShiftKey('left-shift'),
Evan Stade 2012/04/03 02:59:48 what is this? this file is generated. did you chan
Dan Beam 2012/04/03 04:15:06 like we talked about, I'll just revert this as I c
70 new Key(CP('w'), CP('W'), CP('<'), CP('\\')), 70 new Key(CP('w'), CP('W'), CP('<'), CP('\\')),
71 new Key(CP('x'), CP('X'), CP('>'), CP('\u00a9', 'U+00A9')), 71 new Key(CP('x'), CP('X'), CP('>'), CP('\u00a9', 'U+00A9')),
72 new Key(CP('c', 'c', 'fr_popup_c'), CP('C', 'C', 'fr_popup_c'), 72 new Key(CP('c', 'c', 'fr_popup_c'), CP('C', 'C', 'fr_popup_c'),
73 CP('=', 'Equals'), CP('\u00ae', 'U+00AE')), 73 CP('=', 'Equals'), CP('\u00ae', 'U+00AE')),
74 new Key(CP('v'), CP('V'), CP(':'), CP('\u2122', 'U+2122')), 74 new Key(CP('v'), CP('V'), CP(':'), CP('\u2122', 'U+2122')),
75 new Key(CP('b'), CP('B'), CP(';'), CP('\u2105', 'U+2105')), 75 new Key(CP('b'), CP('B'), CP(';'), CP('\u2105', 'U+2105')),
76 new Key(CP('n'), CP('N'), CP(','), CP('[')), 76 new Key(CP('n'), CP('N'), CP(','), CP('[')),
77 new Key(CP('\'', 'Apostrophe'), CP(':'), CP('.'), CP(']')), 77 new Key(CP('\'', 'Apostrophe'), CP(':'), CP('.'), CP(']')),
78 new Key(CP(','), CP('!'), CP('!'), CP('\u00a1', 'U+00A1')), 78 new Key(CP(','), CP('!'), CP('!'), CP('\u00a1', 'U+00A1')),
79 new Key(CP('.'), CP('?'), CP('?'), CP('\u00bf', 'U+00BF')), 79 new Key(CP('.'), CP('?'), CP('?'), CP('\u00bf', 'U+00BF')),
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 [ 219 [
220 new PopupKey(C('\u00ff', 'U+00FF'), C('\u0178', 'U+0178'), 220 new PopupKey(C('\u00ff', 'U+00FF'), C('\u0178', 'U+0178'),
221 C('\u00ff', 'U+00FF'), C('\u00ff', 'U+00FF')), 221 C('\u00ff', 'U+00FF'), C('\u00ff', 'U+00FF')),
222 ], 222 ],
223 ]; 223 ];
224 224
225 KEYBOARDS['fr_popup_y'] = { 225 KEYBOARDS['fr_popup_y'] = {
226 'definition': KEYS_FR_POPUP_Y, 226 'definition': KEYS_FR_POPUP_Y,
227 'aspect': 0.6, 227 'aspect': 0.6,
228 }; 228 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698