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 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_XKEYBOARD_H_ | 5 #ifndef CHROMEOS_IME_MOCK_XKEYBOARD_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_XKEYBOARD_H_ | 6 #define CHROMEOS_IME_MOCK_XKEYBOARD_H_ |
7 | 7 |
8 #include "chrome/browser/chromeos/input_method/xkeyboard.h" | 8 #include "chromeos/ime/xkeyboard.h" |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 | 13 |
14 namespace chromeos { | 14 namespace chromeos { |
15 namespace input_method { | 15 namespace input_method { |
16 | 16 |
17 class MockXKeyboard : public XKeyboard { | 17 class MockXKeyboard : public XKeyboard { |
18 public: | 18 public: |
(...skipping 21 matching lines...) Expand all Loading... |
40 bool num_lock_is_enabled_; | 40 bool num_lock_is_enabled_; |
41 // TODO(yusukes): Add more variables for counting the numbers of the API calls | 41 // TODO(yusukes): Add more variables for counting the numbers of the API calls |
42 | 42 |
43 private: | 43 private: |
44 DISALLOW_COPY_AND_ASSIGN(MockXKeyboard); | 44 DISALLOW_COPY_AND_ASSIGN(MockXKeyboard); |
45 }; | 45 }; |
46 | 46 |
47 } // namespace input_method | 47 } // namespace input_method |
48 } // namespace chromeos | 48 } // namespace chromeos |
49 | 49 |
50 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_XKEYBOARD_H_ | 50 #endif // CHROMEOS_IME_MOCK_XKEYBOARD_H_ |
OLD | NEW |