Index: chromeos/ime/input_method_descriptor.h |
diff --git a/chromeos/ime/input_method_descriptor.h b/chromeos/ime/input_method_descriptor.h |
index 3717411a2fc7badafb9340ba5dc15041caa304b8..39a0d20c021357dbfa28ddb3005fb35a645b979c 100644 |
--- a/chromeos/ime/input_method_descriptor.h |
+++ b/chromeos/ime/input_method_descriptor.h |
@@ -31,9 +31,6 @@ class CHROMEOS_EXPORT InputMethodDescriptor { |
bool operator==(const InputMethodDescriptor& other) const; |
bool operator!=(const InputMethodDescriptor& other) const; |
- // Debug print function. |
- std::string ToString() const; |
- |
const std::string& id() const { return id_; } |
const std::string& name() const { return name_; } |
const std::string& keyboard_layout() const { return keyboard_layout_; } |
@@ -41,11 +38,6 @@ class CHROMEOS_EXPORT InputMethodDescriptor { |
const std::string& options_page_url() const { return options_page_url_; } |
bool third_party() const { return third_party_; } |
- // Returns the fallback input method descriptor (the very basic US |
- // keyboard). This function is mostly used for testing, but may be used |
- // as the fallback, when there is no other choice. |
- static InputMethodDescriptor GetFallbackInputMethodDescriptor(); |
- |
private: |
// An ID that identifies an input method engine (e.g., "t:latn-post", |
// "pinyin", "hangul"). |