Chromium Code Reviews| Index: chrome/browser/extensions/api/input_ime/input_ime_api.h |
| diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api.h b/chrome/browser/extensions/api/input_ime/input_ime_api.h |
| index e4d1dcd635db4be393ee22d35485f41923ea4e4a..29fc4b61c6c7bcfced985c0892113ee977ef5dfa 100644 |
| --- a/chrome/browser/extensions/api/input_ime/input_ime_api.h |
| +++ b/chrome/browser/extensions/api/input_ime/input_ime_api.h |
| @@ -179,6 +179,9 @@ class InputImeAPI : public ProfileKeyedAPI, |
| explicit InputImeAPI(Profile* profile); |
| virtual ~InputImeAPI(); |
| + // ProfileKeyedAPI implementation. |
| + static ProfileKeyedAPIFactory<InputImeAPI>* GetInstance(); |
|
Jeffrey Yasskin
2013/01/04 22:39:23
GetInstance or GetFactoryInstance?
Yoyo Zhou
2013/01/04 22:43:32
oops.
|
| + |
| // content::NotificationObserver implementation. |
| virtual void Observe(int type, |
| const content::NotificationSource& source, |
| @@ -198,10 +201,6 @@ class InputImeAPI : public ProfileKeyedAPI, |
| content::NotificationRegistrar registrar_; |
| }; |
| -template <> |
| -ProfileKeyedAPIFactory<InputImeAPI>* |
| -ProfileKeyedAPIFactory<InputImeAPI>::GetInstance(); |
| - |
| } // namespace extensions |
| #endif // CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_H_ |