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..2a841c65c5b2ca526595e3f004adb73e9c09a200 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,14 @@ |
| 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. |
|
Mark Mentovai
2014/01/13 16:43:36
Watch the 80 column limit.
Evan Stade
2014/01/13 23:36:07
Done.
|
| std::vector<AddressUiComponent> BuildComponents( |
| - const std::string& region_code, |
| - const Localization& localization); |
| + const std::string& region_code); |
| } // namespace addressinput |
| } // namespace i18n |