| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "extensions/browser/browser_context_keyed_api_factory.h" | 11 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 11 #include "extensions/browser/event_router.h" | 12 #include "extensions/browser/event_router.h" |
| 12 #include "extensions/browser/extension_function.h" | 13 #include "extensions/browser/extension_function.h" |
| 13 | 14 |
| 14 namespace chromeos { | 15 namespace chromeos { |
| 15 class ExtensionDictionaryEventRouter; | 16 class ExtensionDictionaryEventRouter; |
| 16 class ExtensionInputMethodEventRouter; | 17 class ExtensionInputMethodEventRouter; |
| 17 } | 18 } |
| 18 | 19 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 input_method_event_router_; | 170 input_method_event_router_; |
| 170 scoped_ptr<chromeos::ExtensionDictionaryEventRouter> | 171 scoped_ptr<chromeos::ExtensionDictionaryEventRouter> |
| 171 dictionary_event_router_; | 172 dictionary_event_router_; |
| 172 | 173 |
| 173 DISALLOW_COPY_AND_ASSIGN(InputMethodAPI); | 174 DISALLOW_COPY_AND_ASSIGN(InputMethodAPI); |
| 174 }; | 175 }; |
| 175 | 176 |
| 176 } // namespace extensions | 177 } // namespace extensions |
| 177 | 178 |
| 178 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ | 179 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_API_H_ |
| OLD | NEW |