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

Unified Diff: net/ftp/ftp_util.cc

Issue 2061433002: Roll base to 9e74307b276b2f9988005c0e97e85ee222586f79. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « net/cert/x509_certificate_openssl.cc ('k') | net/quic/crypto/common_cert_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_util.cc
diff --git a/net/ftp/ftp_util.cc b/net/ftp/ftp_util.cc
index 91854c4b45b09fd9d6c464a7bf8272c12b330ccf..e398d457950860477723a91965ac53e46667d0a1 100644
--- a/net/ftp/ftp_util.cc
+++ b/net/ftp/ftp_util.cc
@@ -132,7 +132,7 @@ namespace {
class AbbreviatedMonthsMap {
public:
static AbbreviatedMonthsMap* GetInstance() {
- return Singleton<AbbreviatedMonthsMap>::get();
+ return base::Singleton<AbbreviatedMonthsMap>::get();
}
// Converts abbreviated month name |text| to its number (in range 1-12).
@@ -150,7 +150,7 @@ class AbbreviatedMonthsMap {
}
private:
- friend struct DefaultSingletonTraits<AbbreviatedMonthsMap>;
+ friend struct base::DefaultSingletonTraits<AbbreviatedMonthsMap>;
// Constructor, initializes the map based on ICU data. It is much faster
// to do that just once.
« no previous file with comments | « net/cert/x509_certificate_openssl.cc ('k') | net/quic/crypto/common_cert_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698