Chromium Code Reviews| Index: third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_ui.h |
| diff --git a/third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_ui.h b/third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_ui.h |
| index 35d2ede96f07bde6eab86e558de338b242348086..b543d854bfe818dab4d9e18fd2e5ff0e200125d2 100644 |
| --- a/third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_ui.h |
| +++ b/third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_ui.h |
| @@ -21,17 +21,15 @@ |
| namespace i18n { |
| namespace addressinput { |
| -class Localization; |
| struct AddressUiComponent; |
| // Returns the list of supported CLDR region codes. |
| const std::vector<std::string>& GetRegionCodes(); |
| -// Returns the UI components for the CLDR |region_code|. Uses the strings from |
| -// |localization|. Returns an empty vector on error. |
| +// Returns the UI components for the CLDR |region_code|. Returns an empty vector |
| +// on error. |
| std::vector<AddressUiComponent> BuildComponents( |
| - const std::string& region_code, |
| - const Localization& localization); |
| + const std::string& region_code); |
|
Mark Mentovai
2014/01/14 15:21:07
This actually would all fit on one line now.
Evan Stade
2014/01/14 23:55:50
Done.
|
| } // namespace addressinput |
| } // namespace i18n |