| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/chromeos/input_method/input_method_config.h" | 5 #include "chromeos/ime/input_method_config.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 | 10 |
| 11 namespace chromeos { | 11 namespace chromeos { |
| 12 namespace input_method { | 12 namespace input_method { |
| 13 | 13 |
| 14 InputMethodConfigValue::InputMethodConfigValue() | 14 InputMethodConfigValue::InputMethodConfigValue() |
| 15 : type(kValueTypeString), | 15 : type(kValueTypeString), |
| (...skipping 24 matching lines...) Expand all Loading... |
| 40 stream << ","; | 40 stream << ","; |
| 41 stream << string_list_value[i]; | 41 stream << string_list_value[i]; |
| 42 } | 42 } |
| 43 break; | 43 break; |
| 44 } | 44 } |
| 45 return stream.str(); | 45 return stream.str(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace input_method | 48 } // namespace input_method |
| 49 } // namespace chromeos | 49 } // namespace chromeos |
| OLD | NEW |