| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/examples/keyboard/keys.h" | 5 #include "examples/keyboard/keys.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "ui/events/event_constants.h" | 8 #include "ui/events/event_constants.h" |
| 9 #include "ui/events/keycodes/keyboard_codes.h" | 9 #include "ui/events/keycodes/keyboard_codes.h" |
| 10 | 10 |
| 11 namespace mojo { | 11 namespace mojo { |
| 12 namespace examples { | 12 namespace examples { |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 const Key kQWERTYKeysRow1[] = | 15 const Key kQWERTYKeysRow1[] = |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 std::vector<const Row*> rows; | 177 std::vector<const Row*> rows; |
| 178 rows.push_back(&kNumericRow1); | 178 rows.push_back(&kNumericRow1); |
| 179 rows.push_back(&kNumericRow2); | 179 rows.push_back(&kNumericRow2); |
| 180 rows.push_back(&kNumericRow3); | 180 rows.push_back(&kNumericRow3); |
| 181 rows.push_back(&kNumericRow4); | 181 rows.push_back(&kNumericRow4); |
| 182 return rows; | 182 return rows; |
| 183 } | 183 } |
| 184 | 184 |
| 185 } // namespace examples | 185 } // namespace examples |
| 186 } // namespace mojo | 186 } // namespace mojo |
| OLD | NEW |