Commit 0f92d232 authored by mazda@chromium.org's avatar mazda@chromium.org

Fix undefined reference errors in input_method_engine.cc for Chrome OS build.

BUG=none
TEST=emrege=${BOARD} chromeos-chrome


Review URL: http://codereview.chromium.org/7324020

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91812 0039d316-1c4b-4281-b951-d872f2087c98
parent 4e697b04
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
#include <ibus.h> #include <ibus.h>
#endif #endif
namespace chromeos {
namespace input_method {
#if defined(HAVE_IBUS) #if defined(HAVE_IBUS)
std::string GetIBusKey(int keyval) { std::string GetIBusKey(int keyval) {
// TODO: Ensure all keys are supported. // TODO: Ensure all keys are supported.
...@@ -86,3 +89,6 @@ std::string GetIBusKeyCode(int keyval, int keycode) { ...@@ -86,3 +89,6 @@ std::string GetIBusKeyCode(int keyval, int keycode) {
return ""; return "";
} }
#endif // HAVE_IBUS #endif // HAVE_IBUS
} // namespace input_method
} // namespace chromeos
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment