| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromeos/ime/input_method_descriptor.h" | 5 #include "ui/chromeos/ime/input_method_descriptor.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/strings/string_split.h" | 10 #include "base/strings/string_split.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "chromeos/ime/extension_ime_util.h" | 12 #include "ui/chromeos/ime/extension_ime_util.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 namespace chromeos { | 15 namespace chromeos { |
| 16 namespace input_method { | 16 namespace input_method { |
| 17 | 17 |
| 18 InputMethodDescriptor::InputMethodDescriptor( | 18 InputMethodDescriptor::InputMethodDescriptor( |
| 19 const std::string& id, | 19 const std::string& id, |
| 20 const std::string& name, | 20 const std::string& name, |
| 21 const std::string& indicator, | 21 const std::string& indicator, |
| 22 const std::vector<std::string>& keyboard_layouts, | 22 const std::vector<std::string>& keyboard_layouts, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 InputMethodDescriptor::InputMethodDescriptor() { | 55 InputMethodDescriptor::InputMethodDescriptor() { |
| 56 } | 56 } |
| 57 | 57 |
| 58 InputMethodDescriptor::~InputMethodDescriptor() { | 58 InputMethodDescriptor::~InputMethodDescriptor() { |
| 59 } | 59 } |
| 60 | 60 |
| 61 } // namespace input_method | 61 } // namespace input_method |
| 62 } // namespace chromeos | 62 } // namespace chromeos |
| OLD | NEW |