| Index: chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h b/chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h
|
| index 1d88392714e3e0704569e264d2678f4f1de0b0c1..b9591751aca7106fcbb05c3c081f0485f9c42295 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h
|
| +++ b/chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h
|
| @@ -19,8 +19,7 @@ namespace options {
|
| // Language options page UI handler for Chrome OS. For non-Chrome OS,
|
| // see LanguageOptionsHnadler.
|
| class CrosLanguageOptionsHandler
|
| - : public ::options::LanguageOptionsHandlerCommon,
|
| - public ComponentExtensionIMEManager::Observer {
|
| + : public ::options::LanguageOptionsHandlerCommon {
|
| public:
|
| CrosLanguageOptionsHandler();
|
| virtual ~CrosLanguageOptionsHandler();
|
| @@ -70,22 +69,10 @@ class CrosLanguageOptionsHandler
|
| // |args| will contain the input method ID as string (ex. "mozc").
|
| void InputMethodOptionsOpenCallback(const base::ListValue* args);
|
|
|
| - // ComponentExtensionIMEManager::Observer override.
|
| - virtual void OnImeComponentExtensionInitialized() OVERRIDE;
|
| -
|
| - // OptionsPageUIHandler implementation.
|
| - virtual void InitializePage() OVERRIDE;
|
| -
|
| // Adds the name of the extension that provides the IME to each entry in the
|
| // |list| of extension IMEs.
|
| void AddImeProvider(base::ListValue* list);
|
|
|
| - // True if the component extension list was appended into input method list.
|
| - bool composition_extension_appended_;
|
| -
|
| - // True if this page was initialized.
|
| - bool is_page_initialized_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(CrosLanguageOptionsHandler);
|
| };
|
|
|
|
|