Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h

Issue 419293002: IME refactoring: ChromeOS introduce input methods State. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
diff --git a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
index 4648427febbdf6682e7a754cfd0520707f395eff..f84c6a5221d5c5987af6894b2d002a11a2849de6 100644
--- a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
+++ b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
@@ -15,6 +15,8 @@
#include "base/values.h"
#include "chromeos/ime/component_extension_ime_manager.h"
+class Profile;
+
namespace chromeos {
// The implementation class of ComponentExtensionIMEManagerDelegate.
@@ -26,10 +28,12 @@ class ComponentExtensionIMEManagerImpl
// ComponentExtensionIMEManagerDelegate overrides:
virtual std::vector<ComponentExtensionIME> ListIME() OVERRIDE;
- virtual bool Load(const std::string& extension_id,
+ virtual bool Load(Profile* profile,
+ const std::string& extension_id,
const std::string& manifest,
const base::FilePath& file_path) OVERRIDE;
- virtual void Unload(const std::string& extension_id,
+ virtual void Unload(Profile* profile,
+ const std::string& extension_id,
const base::FilePath& file_path) OVERRIDE;
private:

Powered by Google App Engine
This is Rietveld 408576698