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

Unified Diff: third_party/libaddressinput/chromium/chrome_downloader_impl.h

Issue 145553009: rAc: use libaddressinput to validate international addresses. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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/chrome_downloader_impl.h
diff --git a/third_party/libaddressinput/chromium/chrome_downloader_impl.h b/third_party/libaddressinput/chromium/chrome_downloader_impl.h
index 99f38c2cb278ad50e778f3c713ce1c0c94bfbecb..09a9e7ae4f21d128d1e478947699993d6d501ea1 100644
--- a/third_party/libaddressinput/chromium/chrome_downloader_impl.h
+++ b/third_party/libaddressinput/chromium/chrome_downloader_impl.h
@@ -17,15 +17,17 @@ class URLFetcher;
class URLRequestContextGetter;
}
+namespace autofill {
+
// A class for downloading rules to let libaddressinput validate international
// addresses.
-class ChromeDownloaderImpl : public i18n::addressinput::Downloader,
+class ChromeDownloaderImpl : public ::i18n::addressinput::Downloader,
public net::URLFetcherDelegate {
public:
explicit ChromeDownloaderImpl(net::URLRequestContextGetter* getter);
virtual ~ChromeDownloaderImpl();
- // i18n::addressinput::Downloader:
+ // ::i18n::addressinput::Downloader:
virtual void Download(const std::string& url,
scoped_ptr<Callback> downloaded) OVERRIDE;
@@ -49,4 +51,6 @@ class ChromeDownloaderImpl : public i18n::addressinput::Downloader,
DISALLOW_COPY_AND_ASSIGN(ChromeDownloaderImpl);
};
+} // namespace autofill
+
#endif // THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_DOWNLOADER_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698