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

Unified Diff: chromeos/ime/ibus_bridge.h

Issue 12221045: Calling IBusBridge::Initialize/Shutdown function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 7 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
Index: chromeos/ime/ibus_bridge.h
diff --git a/chromeos/ime/ibus_bridge.h b/chromeos/ime/ibus_bridge.h
index 075bcd0eed935ed5050cfdd436af3586270369be..af51eb8a01cb1be85f6b5b021d202c1d3f5b41ac 100644
--- a/chromeos/ime/ibus_bridge.h
+++ b/chromeos/ime/ibus_bridge.h
@@ -7,6 +7,7 @@
#include <string>
#include "base/basictypes.h"
+#include "chromeos/chromeos_export.h"
namespace chromeos {
class IBusInputContextHandlerInterface;
@@ -24,13 +25,13 @@ class IBusBridge {
virtual ~IBusBridge();
// Allocates the global instance. Must be called before any calls to Get().
- static void Initialize();
+ static CHROMEOS_EXPORT void Initialize();
// Releases the global instance.
- static void Shutdown();
+ static CHROMEOS_EXPORT void Shutdown();
// Returns IBusBridge global instance. Initialize() must be called first.
- static IBusBridge* Get();
+ static CHROMEOS_EXPORT IBusBridge* Get();
// Returns current InputContextHandler. This function returns NULL if input
// context is not ready to use.

Powered by Google App Engine
This is Rietveld 408576698