Update broken references to image assets
[chromium-blink-merge.git] / chrome / browser / chromeos / extensions / input_method_event_router.h
bloba0cf03b563f4f9b5c8dddfc69efb9f74e62021bf
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_EVENT_ROUTER_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_EVENT_ROUTER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ui/base/ime/chromeos/input_method_manager.h"
12 namespace content {
13 class BrowserContext;
16 namespace chromeos {
18 // Event router class for the input method events.
19 class ExtensionInputMethodEventRouter
20 : public input_method::InputMethodManager::Observer {
21 public:
22 explicit ExtensionInputMethodEventRouter(content::BrowserContext* context);
23 ~ExtensionInputMethodEventRouter() override;
25 // Implements input_method::InputMethodManager::Observer:
26 void InputMethodChanged(input_method::InputMethodManager* manager,
27 Profile* profile,
28 bool show_message) override;
30 private:
31 content::BrowserContext* context_;
33 DISALLOW_COPY_AND_ASSIGN(ExtensionInputMethodEventRouter);
36 } // namespace chromeos
37 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_METHOD_EVENT_ROUTER_H_