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

Unified Diff: chrome/browser/ui/views/ime_driver/ime_driver_mus.h

Issue 2557493002: IME for Mus: Use ui::InputMethodChromeOS to provide logic for ime driver. (Closed)
Patch Set: More cleanup. Created 4 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
Index: chrome/browser/ui/views/ime_driver/ime_driver_mus.h
diff --git a/chrome/browser/ui/views/ime_driver_mus.h b/chrome/browser/ui/views/ime_driver/ime_driver_mus.h
similarity index 83%
rename from chrome/browser/ui/views/ime_driver_mus.h
rename to chrome/browser/ui/views/ime_driver/ime_driver_mus.h
index bc70b3727da13b93d152baaed644d2304a74cff5..e81d34db739b6fb161c0ee044303f4f5a0d370c1 100644
--- a/chrome/browser/ui/views/ime_driver_mus.h
+++ b/chrome/browser/ui/views/ime_driver/ime_driver_mus.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 CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
-#define CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
+#ifndef CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_
+#define CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_
#include <stdint.h>
@@ -15,14 +15,13 @@
class IMEDriver : public ui::mojom::IMEDriver {
public:
+ IMEDriver();
~IMEDriver() override;
// Instantiate the IME driver and register it to the UI service.
static void Register();
private:
- IMEDriver();
-
// ui::mojom::IMEDriver:
void StartSession(
int32_t session_id,
@@ -36,4 +35,4 @@ class IMEDriver : public ui::mojom::IMEDriver {
DISALLOW_COPY_AND_ASSIGN(IMEDriver);
};
-#endif // CHROME_BROWSER_UI_VIEWS_IME_DRIVER_MUS_H_
+#endif // CHROME_BROWSER_UI_VIEWS_IME_DRIVER_IME_DRIVER_MUS_H_

Powered by Google App Engine
This is Rietveld 408576698