OLD | NEW |
1 // Copyright 2013 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 CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ | 5 #ifndef CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ |
6 #define CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ | 6 #define CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
12 | 12 |
13 namespace chromeos { | 13 namespace chromeos { |
14 namespace input_method { | 14 namespace input_method { |
15 | 15 |
16 // Provides access to read/persist Input Method-related properties. | 16 // Provides access to read/persist Input Method-related properties. |
17 class InputMethodDelegate { | 17 class InputMethodDelegate { |
18 public: | 18 public: |
19 InputMethodDelegate() {} | 19 InputMethodDelegate() {} |
20 virtual ~InputMethodDelegate() {} | 20 virtual ~InputMethodDelegate() {} |
21 | 21 |
(...skipping 12 matching lines...) Expand all Loading... |
34 const std::string& language_code) const = 0; | 34 const std::string& language_code) const = 0; |
35 | 35 |
36 private: | 36 private: |
37 DISALLOW_COPY_AND_ASSIGN(InputMethodDelegate); | 37 DISALLOW_COPY_AND_ASSIGN(InputMethodDelegate); |
38 }; | 38 }; |
39 | 39 |
40 } // namespace input_method | 40 } // namespace input_method |
41 } // namespace chromeos | 41 } // namespace chromeos |
42 | 42 |
43 #endif // CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ | 43 #endif // CHROMEOS_IME_INPUT_METHOD_DELEGATE_H_ |
OLD | NEW |