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

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

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 | « no previous file | chrome/browser/chromeos/input_method/input_method_engine.cc » ('j') | 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.h
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.h b/chrome/browser/chromeos/input_method/input_method_engine.h
index e63ac20f2b48deb9028233ec696281845ada60de..0a0e7a19ddfe09a858fd145a2cbdd93fab4791cb 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.h
+++ b/chrome/browser/chromeos/input_method/input_method_engine.h
@@ -18,6 +18,9 @@ extern const char* kExtensionImePrefix;
class InputMethodEngine {
public:
struct KeyboardEvent {
+ KeyboardEvent();
+ virtual ~KeyboardEvent();
+
std::string type;
std::string key;
std::string key_code;
@@ -27,6 +30,9 @@ class InputMethodEngine {
};
struct MenuItem {
+ MenuItem();
+ virtual ~MenuItem();
+
std::string id;
std::string label;
int style;
@@ -44,6 +50,9 @@ class InputMethodEngine {
};
struct Candidate {
+ Candidate();
+ virtual ~Candidate();
+
std::string value;
int id;
std::string label;
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698