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

Unified Diff: chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h

Issue 1554983002: Build chrome.input.ime.* API in GN mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h
diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h b/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h
new file mode 100644
index 0000000000000000000000000000000000000000..2de65ed53665d3f0ea3ff160fb828a6349036750
--- /dev/null
+++ b/chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h
@@ -0,0 +1,29 @@
+// Copyright 2016 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 CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_
+#define CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_
+
+#include <string>
+#include <vector>
+
+#include "chrome/browser/extensions/api/input_ime/input_ime_event_router_base.h"
+#include "chrome/browser/profiles/profile.h"
+
+class Profile;
+
+namespace extensions {
+class InputImeEventRouterBase;
+
+class InputImeEventRouter : public InputImeEventRouterBase {
+ public:
+ explicit InputImeEventRouter(Profile* profile);
+ ~InputImeEventRouter() override;
+
+ DISALLOW_COPY_AND_ASSIGN(InputImeEventRouter);
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_INPUT_IME_INPUT_IME_API_NONCHROMEOS_H_

Powered by Google App Engine
This is Rietveld 408576698