| 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 UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ | 5 #ifndef UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ |
| 6 #define UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ | 6 #define UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" | 8 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" |
| 9 #include "ui/base/ui_base_export.h" | 9 #include "ui/base/ime/ui_base_ime_export.h" |
| 10 | 10 |
| 11 namespace chromeos { | 11 namespace chromeos { |
| 12 namespace input_method { | 12 namespace input_method { |
| 13 | 13 |
| 14 class UI_BASE_EXPORT MockComponentExtIMEManagerDelegate | 14 class UI_BASE_IME_EXPORT MockComponentExtIMEManagerDelegate |
| 15 : public ComponentExtensionIMEManagerDelegate { | 15 : public ComponentExtensionIMEManagerDelegate { |
| 16 public: | 16 public: |
| 17 MockComponentExtIMEManagerDelegate(); | 17 MockComponentExtIMEManagerDelegate(); |
| 18 ~MockComponentExtIMEManagerDelegate() override; | 18 ~MockComponentExtIMEManagerDelegate() override; |
| 19 | 19 |
| 20 std::vector<ComponentExtensionIME> ListIME() override; | 20 std::vector<ComponentExtensionIME> ListIME() override; |
| 21 void Load(Profile*, | 21 void Load(Profile*, |
| 22 const std::string& extension_id, | 22 const std::string& extension_id, |
| 23 const std::string& manifest, | 23 const std::string& manifest, |
| 24 const base::FilePath& path) override; | 24 const base::FilePath& path) override; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 54 | 54 |
| 55 std::vector<ComponentExtensionIME> ime_list_; | 55 std::vector<ComponentExtensionIME> ime_list_; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(MockComponentExtIMEManagerDelegate); | 57 DISALLOW_COPY_AND_ASSIGN(MockComponentExtIMEManagerDelegate); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace input_method | 60 } // namespace input_method |
| 61 } // namespace chromeos | 61 } // namespace chromeos |
| 62 | 62 |
| 63 #endif // UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ | 63 #endif // UI_BASE_IME_CHROMEOS_MOCK_COMPONENT_EXTENSION_IME_MANAGER_DELEGATE_H_ |
| OLD | NEW |