Index: chromeos/ime/input_method_descriptor.cc |
diff --git a/chromeos/ime/input_method_descriptor.cc b/chromeos/ime/input_method_descriptor.cc |
index 3ed8da34864280d0e56244d5709232f2844f9b5c..408852c743dc78a8cfa9ea65d8376ce686c66481 100644 |
--- a/chromeos/ime/input_method_descriptor.cc |
+++ b/chromeos/ime/input_method_descriptor.cc |
@@ -12,10 +12,6 @@ |
namespace chromeos { |
namespace input_method { |
-namespace { |
-const char kFallbackLayout[] = "us"; |
-} // namespace |
- |
InputMethodDescriptor::InputMethodDescriptor( |
const std::string& id, |
const std::string& name, |
@@ -47,27 +43,5 @@ bool InputMethodDescriptor::operator!=( |
return !(*this == other); |
} |
-// static |
-InputMethodDescriptor |
-InputMethodDescriptor::GetFallbackInputMethodDescriptor() { |
- return InputMethodDescriptor("xkb:us::eng", |
- "", |
- kFallbackLayout, |
- "en-US", |
- "", // options page, not available. |
- false); |
-} |
- |
-std::string InputMethodDescriptor::ToString() const { |
- std::stringstream stream; |
- stream << "id=" << id() |
- << ", name=" << name() |
- << ", keyboard_layout=" << keyboard_layout() |
- << ", language_code=" << language_code() |
- << ", options_page_url=" << options_page_url() |
- << ", third_party=" << third_party(); |
- return stream.str(); |
-} |
- |
} // namespace input_method |
} // namespace chromeos |