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

Unified Diff: chrome/browser/chromeos/input_method/input_method_engine.cc

Issue 7314019: Fix clang build break (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add header file Created 9 years, 5 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 | « chrome/browser/chromeos/input_method/input_method_engine.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/input_method/input_method_engine.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.cc b/chrome/browser/chromeos/input_method/input_method_engine.cc
index 254208d60e40dd3e5ce6464f9beeb00000f4521c..0c00e54d0f03a6236137d2a9366efe2faafd3e29 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine.cc
@@ -19,6 +19,24 @@ const char* kExtensionImePrefix = "_ext_ime_";
const char* kErrorNotActive = "IME is not active";
const char* kErrorWrongContext = "Context is not active";
+InputMethodEngine::KeyboardEvent::KeyboardEvent() {
+}
+
+InputMethodEngine::KeyboardEvent::~KeyboardEvent() {
+}
+
+InputMethodEngine::MenuItem::MenuItem() {
+}
+
+InputMethodEngine::MenuItem::~MenuItem() {
+}
+
+InputMethodEngine::Candidate::Candidate() {
+}
+
+InputMethodEngine::Candidate::~Candidate() {
+}
+
InputMethodEngine::Observer::~Observer() {
}
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_engine.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698