Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: ui/base/ime/chromeos/input_method_manager.h

Issue 889323003: Split ui/base/ime into a new component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cros x11 GN build Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/ime/chromeos/input_method_descriptor.h ('k') | ui/base/ime/chromeos/input_method_whitelist.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/input_method_manager.h
diff --git a/ui/base/ime/chromeos/input_method_manager.h b/ui/base/ime/chromeos/input_method_manager.h
index d469e318fbd6686d96a63e39d8a5e477ada04cbb..a7eb3a96dcdb46edb0dba5cfb4b07fd1fcc51225 100644
--- a/ui/base/ime/chromeos/input_method_manager.h
+++ b/ui/base/ime/chromeos/input_method_manager.h
@@ -12,7 +12,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "ui/base/ime/chromeos/input_method_descriptor.h"
-#include "ui/base/ui_base_export.h"
+#include "ui/base/ime/ui_base_ime_export.h"
class Profile;
@@ -34,7 +34,7 @@ class ImeKeyboard;
// This class manages input methodshandles. Classes can add themselves as
// observers. Clients can get an instance of this library class by:
// InputMethodManager::Get().
-class UI_BASE_EXPORT InputMethodManager {
+class UI_BASE_IME_EXPORT InputMethodManager {
public:
enum UISessionState {
STATE_LOGIN_SCREEN = 0,
@@ -181,16 +181,16 @@ class UI_BASE_EXPORT InputMethodManager {
// Gets the global instance of InputMethodManager. Initialize() must be called
// first.
- static UI_BASE_EXPORT InputMethodManager* Get();
+ static UI_BASE_IME_EXPORT InputMethodManager* Get();
// Sets the global instance. |instance| will be owned by the internal pointer
// and deleted by Shutdown().
// TODO(nona): Instanciate InputMethodManagerImpl inside of this function once
// crbug.com/164375 is fixed.
- static UI_BASE_EXPORT void Initialize(InputMethodManager* instance);
+ static UI_BASE_IME_EXPORT void Initialize(InputMethodManager* instance);
// Destroy the global instance.
- static UI_BASE_EXPORT void Shutdown();
+ static UI_BASE_IME_EXPORT void Shutdown();
// Get the current UI session state (e.g. login screen, lock screen, etc.).
virtual UISessionState GetUISessionState() = 0;
« no previous file with comments | « ui/base/ime/chromeos/input_method_descriptor.h ('k') | ui/base/ime/chromeos/input_method_whitelist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698