Chromium Code Reviews| Index: chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h |
| diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h b/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a2774f1118d9026a745e4a48e8b31071cd426608 |
| --- /dev/null |
| +++ b/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h |
| @@ -0,0 +1,33 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_ |
| +#define CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_ |
| + |
| +#include <string> |
| +#include <vector> |
| + |
| +#include "chrome/browser/extensions/api/input_ime/input_ime_event_router_base.h" |
| +#include "chrome/browser/profiles/profile.h" |
| + |
| +class Profile; |
| + |
| +namespace extensions { |
| +class InputImeEventRouterBase; |
| + |
| +class InputImeEventRouter : public InputImeEventRouterBase { |
| + public: |
| + explicit InputImeEventRouter(Profile* profile); |
| + ~InputImeEventRouter(); |
|
Shu Chen
2016/01/06 07:00:08
~InputImeEventRouter() override;
Azure Wei
2016/01/06 08:00:01
Done.
|
| + |
| + private: |
| + // The id of the all registered extensions. |
| + std::vector<std::string> extension_ids_; |
|
Shu Chen
2016/01/06 07:00:07
This is not used.
Azure Wei
2016/01/06 08:00:01
Deleted.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(InputImeEventRouter); |
| +}; |
| + |
| +} // namespace extensions |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_ |