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

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

Issue 108143003: Rename input_method_linux_x11 as input_method_auralinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename LinuxAura as AuraLinux Created 7 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/ime/ime.gypi ('k') | ui/base/ime/input_method_auralinux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/input_method_auralinux.h
diff --git a/ui/base/ime/input_method_linux_x11.h b/ui/base/ime/input_method_auralinux.h
similarity index 75%
rename from ui/base/ime/input_method_linux_x11.h
rename to ui/base/ime/input_method_auralinux.h
index d1e59f9ebaadf7957a639029a96a65d13f01ebf5..170faa09350ddf039024cf65892185689c18c06c 100644
--- a/ui/base/ime/input_method_linux_x11.h
+++ b/ui/base/ime/input_method_auralinux.h
@@ -2,8 +2,8 @@
// 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_LINUX_X11_H_
-#define UI_BASE_IME_INPUT_METHOD_LINUX_X11_H_
+#ifndef UI_BASE_IME_INPUT_METHOD_AURA_LINUX_H_
Yuki 2013/12/06 13:43:03 Please follow the same style as the filename. Shou
+#define UI_BASE_IME_INPUT_METHOD_AURA_LINUX_H_
#include "base/memory/scoped_ptr.h"
#include "ui/base/ime/input_method_base.h"
@@ -11,14 +11,14 @@
namespace ui {
-// A ui::InputMethod implementation for a X11 event loop on GNU/Linux.
-// This class is not designed for supporting CrOS. The implementation details
-// are separated to ui::LinuxInputMethodContext interface.
-class InputMethodLinuxX11 : public InputMethodBase,
- public LinuxInputMethodContextDelegate {
+// A ui::InputMethod implementation for Aura on Linux platforms. The
+// implementation details are separated to ui::LinuxInputMethodContext
+// interface.
+class InputMethodAuraLinux : public InputMethodBase,
+ public LinuxInputMethodContextDelegate {
public:
- explicit InputMethodLinuxX11(internal::InputMethodDelegate* delegate);
- virtual ~InputMethodLinuxX11();
+ explicit InputMethodAuraLinux(internal::InputMethodDelegate* delegate);
+ virtual ~InputMethodAuraLinux();
// Initializes input methods. This function must be called once prior to
// any use of this instance. This function is supposed to be called from
@@ -53,9 +53,9 @@ class InputMethodLinuxX11 : public InputMethodBase,
scoped_ptr<LinuxInputMethodContext> input_method_context_;
- DISALLOW_COPY_AND_ASSIGN(InputMethodLinuxX11);
+ DISALLOW_COPY_AND_ASSIGN(InputMethodAuraLinux);
};
} // namespace ui
-#endif // UI_BASE_IME_INPUT_METHOD_LINUX_X11_H_
+#endif // UI_BASE_IME_INPUT_METHOD_AURA_LINUX_H_
Yuki 2013/12/06 13:43:03 Ditto.
« no previous file with comments | « ui/base/ime/ime.gypi ('k') | ui/base/ime/input_method_auralinux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698