summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/input_method/input_method_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_manager.cc')
-rw-r--r--chrome/browser/chromeos/input_method/input_method_manager.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_manager.cc b/chrome/browser/chromeos/input_method/input_method_manager.cc
index 1afd413..1abf167 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager.cc
+++ b/chrome/browser/chromeos/input_method/input_method_manager.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/chromeos/input_method/input_method_manager.h"
+#include "chrome/browser/chromeos/input_method/input_method_delegate_impl.h"
#include "chrome/browser/chromeos/input_method/input_method_manager_impl.h"
namespace chromeos {
@@ -16,7 +17,8 @@ InputMethodManager* g_input_method_manager = NULL;
// static
void InputMethodManager::Initialize() {
DCHECK(!g_input_method_manager);
- InputMethodManagerImpl* impl = new InputMethodManagerImpl;
+ InputMethodManagerImpl* impl = new InputMethodManagerImpl(
+ scoped_ptr<InputMethodDelegate>(new InputMethodDelegateImpl));
impl->Init();
g_input_method_manager = impl;
DVLOG(1) << "InputMethodManager initialized";