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

Unified Diff: net/spdy/hpack/hpack_constants.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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/socket/websocket_endpoint_lock_manager.cc ('k') | net/ssl/openssl_client_key_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack/hpack_constants.cc
diff --git a/net/spdy/hpack/hpack_constants.cc b/net/spdy/hpack/hpack_constants.cc
index 28385f9334ecdbf71309a2203a67c608299b6257..59a55dac96a537ad6532d38da349932f207cabaa 100644
--- a/net/spdy/hpack/hpack_constants.cc
+++ b/net/spdy/hpack/hpack_constants.cc
@@ -29,7 +29,7 @@ struct SharedHpackHuffmanTable {
}
static SharedHpackHuffmanTable* GetInstance() {
- return Singleton<SharedHpackHuffmanTable>::get();
+ return base::Singleton<SharedHpackHuffmanTable>::get();
}
scoped_ptr<const HpackHuffmanTable> table;
@@ -48,7 +48,7 @@ struct SharedHpackStaticTable {
}
static SharedHpackStaticTable* GetInstance() {
- return Singleton<SharedHpackStaticTable>::get();
+ return base::Singleton<SharedHpackStaticTable>::get();
}
scoped_ptr<const HpackStaticTable> table;
« no previous file with comments | « net/socket/websocket_endpoint_lock_manager.cc ('k') | net/ssl/openssl_client_key_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698