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

Unified Diff: ui/base/ime/input_method_factory.h

Issue 8576005: IME (input method editor) support for Aura, part 3 of 3: Use ui::InputMethod in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move to ash/ime/ Created 9 years 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/events.h ('k') | ui/base/ime/input_method_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/input_method_factory.h
diff --git a/ui/base/ime/input_method_factory.h b/ui/base/ime/input_method_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..353f5b11e7adb57e4e58b578df23d0b4183f9e36
--- /dev/null
+++ b/ui/base/ime/input_method_factory.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_BASE_IME_INPUT_METHOD_FACTORY_H_
+#define UI_BASE_IME_INPUT_METHOD_FACTORY_H_
+#pragma once
+
+#include "ui/base/ui_export.h"
+
+namespace ui {
+
+class InputMethod;
+
+namespace internal {
+class InputMethodDelegate;
+} // namespace internal
+
+// Creates and returns an input method implementation for the platform. Caller
+// must delete the object. The object does not own |delegate|.
+UI_EXPORT InputMethod* CreateInputMethod(
+ internal::InputMethodDelegate* delegate);
+
+} // namespace ui;
+
+#endif // UI_BASE_IME_INPUT_METHOD_FACTORY_H_
« no previous file with comments | « ui/base/events.h ('k') | ui/base/ime/input_method_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698