Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Unified Diff: third_party/libaddressinput/chromium/cpp/src/retriever.h

Issue 127223003: [rAc - libaddressinput] Chrome download impl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 003774631e7d55fa8b9310aea5c28413a78afe88..4749ee5146fad6c5bb805f9dfdeaa006451e26ae 100644
--- a/third_party/libaddressinput/chromium/cpp/src/retriever.h
+++ b/third_party/libaddressinput/chromium/cpp/src/retriever.h
@@ -44,7 +44,7 @@ class Retriever {
typedef i18n::addressinput::Callback<std::string, std::string> Callback;
Retriever(const std::string& validation_data_url,
- scoped_ptr<const Downloader> downloader,
+ scoped_ptr<Downloader> downloader,
scoped_ptr<Storage> storage);
~Retriever();
@@ -69,7 +69,7 @@ class Retriever {
scoped_ptr<Callback> GetCallbackForKey(const std::string& key);
const LookupKeyUtil lookup_key_util_;
- scoped_ptr<const Downloader> downloader_;
+ scoped_ptr<Downloader> downloader_;
scoped_ptr<Storage> storage_;
// Holds pending requests. The callback pointers are owned.
std::map<std::string, Callback*> requests_;

Powered by Google App Engine
This is Rietveld 408576698