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

Unified Diff: chromeos/ime/fake_ime_keyboard.h

Issue 232333002: ozone: Rename XKeyboard to KeyboardController & use fake under ozone (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to ImeKeyboard & rebase Created 6 years, 8 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
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/ime/fake_ime_keyboard.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/fake_ime_keyboard.h
diff --git a/chromeos/ime/fake_xkeyboard.h b/chromeos/ime/fake_ime_keyboard.h
similarity index 80%
rename from chromeos/ime/fake_xkeyboard.h
rename to chromeos/ime/fake_ime_keyboard.h
index 3422bfa31c31774687625995d4014c99273b3b4b..f710d61730aa94e327ef181116795f06629e7b1b 100644
--- a/chromeos/ime/fake_xkeyboard.h
+++ b/chromeos/ime/fake_ime_keyboard.h
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROMEOS_IME_FAKE_XKEYBOARD_H_
-#define CHROMEOS_IME_FAKE_XKEYBOARD_H_
+#ifndef CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
+#define CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
-#include "chromeos/ime/xkeyboard.h"
+#include "chromeos/ime/ime_keyboard.h"
#include <string>
@@ -15,10 +15,10 @@
namespace chromeos {
namespace input_method {
-class CHROMEOS_EXPORT FakeXKeyboard : public XKeyboard {
+class CHROMEOS_EXPORT FakeImeKeyboard : public ImeKeyboard {
public:
- FakeXKeyboard();
- virtual ~FakeXKeyboard() {}
+ FakeImeKeyboard();
+ virtual ~FakeImeKeyboard() {}
virtual void AddObserver(Observer* observer) OVERRIDE;
virtual void RemoveObserver(Observer* observer) OVERRIDE;
@@ -42,10 +42,10 @@ class CHROMEOS_EXPORT FakeXKeyboard : public XKeyboard {
// TODO(yusukes): Add more variables for counting the numbers of the API calls
private:
- DISALLOW_COPY_AND_ASSIGN(FakeXKeyboard);
+ DISALLOW_COPY_AND_ASSIGN(FakeImeKeyboard);
};
} // namespace input_method
} // namespace chromeos
-#endif // CHROMEOS_IME_FAKE_XKEYBOARD_H_
+#endif // CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/ime/fake_ime_keyboard.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698