| 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 33f86871df23e8145ab5339695ae2762119ea4c8..fc67d77b6a3616bc854160c4de19a9d67523c58d 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
|
| @@ -21,8 +21,7 @@ extern const char kVendorOtherLanguagesListDivider[];
|
| // 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();
|
| @@ -94,9 +93,6 @@ 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;
|
| -
|
| // Gets the list of languages with |descriptors| based on
|
| // |base_language_codes|.
|
| // |insert_divider| means to insert entry with "code" attribute set to
|
| @@ -107,19 +103,10 @@ class CrosLanguageOptionsHandler
|
| const std::vector<std::string>& base_language_codes,
|
| bool insert_divider);
|
|
|
| - // 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);
|
| };
|
|
|
|
|