OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/chromeos/input_method/xkeyboard.h" | 5 #include "chromeos/ime/xkeyboard.h" |
6 | 6 |
7 #include <cstdlib> | 7 #include <cstdlib> |
8 #include <cstring> | 8 #include <cstring> |
9 #include <queue> | 9 #include <queue> |
10 #include <set> | 10 #include <set> |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "base/chromeos/chromeos_version.h" | 13 #include "base/chromeos/chromeos_version.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 return CheckLayoutName(layout_name); | 369 return CheckLayoutName(layout_name); |
370 } | 370 } |
371 | 371 |
372 // static | 372 // static |
373 XKeyboard* XKeyboard::Create() { | 373 XKeyboard* XKeyboard::Create() { |
374 return new XKeyboardImpl(); | 374 return new XKeyboardImpl(); |
375 } | 375 } |
376 | 376 |
377 } // namespace input_method | 377 } // namespace input_method |
378 } // namespace chromeos | 378 } // namespace chromeos |
OLD | NEW |