Chromium Code Reviews| Index: third_party/libaddressinput/chromium/cpp/src/retriever.h |
| diff --git a/third_party/libaddressinput/chromium/cpp/src/retriever.h b/third_party/libaddressinput/chromium/cpp/src/retriever.h |
| index 4749ee5146fad6c5bb805f9dfdeaa006451e26ae..a1371cf4fa4e618d910f86d4073073a237961d1f 100644 |
| --- a/third_party/libaddressinput/chromium/cpp/src/retriever.h |
| +++ b/third_party/libaddressinput/chromium/cpp/src/retriever.h |
| @@ -32,7 +32,7 @@ namespace addressinput { |
| class Downloader; |
| class Storage; |
| -// Retrieves data. Sample usage: |
| +// Manages downloading data and caching it locally. Sample usage: |
| // Storage* storage = ...; |
| // Downloader* downloader = ...; |
| // Retriever retriever("https://i18napis.appspot.com/ssl-address/", |
| @@ -57,7 +57,7 @@ class Retriever { |
| // Callback for when a rule is retrieved from |storage_|. |
| void OnDataRetrievedFromStorage(bool success, |
| const std::string& key, |
| - const std::string& data); |
| + const std::string& downloaded_data); |
|
please use gerrit instead
2014/01/16 00:50:15
The .cc file renamed the variable for the OnDownlo
Evan Stade
2014/01/16 01:09:10
good catch, fixed.
|
| // Callback for when a rule is retrieved by |downloader_|. |
| void OnDownloaded(bool success, |