OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ui/keyboard/content/keyboard_content_util.h" | 5 #include "ui/keyboard/content/keyboard_content_util.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "grit/keyboard_resources.h" | 8 #include "grit/keyboard_resources.h" |
9 #include "grit/keyboard_resources_map.h" | 9 #include "grit/keyboard_resources_map.h" |
10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 IDR_KEYBOARD_SOUNDS_KEYPRESS_RETURN}, | 98 IDR_KEYBOARD_SOUNDS_KEYPRESS_RETURN}, |
99 {"keyboard/sounds/keypress-spacebar.wav", | 99 {"keyboard/sounds/keypress-spacebar.wav", |
100 IDR_KEYBOARD_SOUNDS_KEYPRESS_SPACEBAR}, | 100 IDR_KEYBOARD_SOUNDS_KEYPRESS_SPACEBAR}, |
101 {"keyboard/sounds/keypress-standard.wav", | 101 {"keyboard/sounds/keypress-standard.wav", |
102 IDR_KEYBOARD_SOUNDS_KEYPRESS_STANDARD}, | 102 IDR_KEYBOARD_SOUNDS_KEYPRESS_STANDARD}, |
103 }; | 103 }; |
104 *size = arraysize(kKeyboardResources); | 104 *size = arraysize(kKeyboardResources); |
105 return kKeyboardResources; | 105 return kKeyboardResources; |
106 } | 106 } |
107 | 107 |
108 } // namespace keyboard | 108 } // namespace keyboard |
OLD | NEW |