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

Unified Diff: content/child/blink_platform_impl.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 5 years, 4 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: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 222dc990de1e41e9f774a62fd8655962fcb429b1..669642fbd4edef31d54c0e59117b764129044867 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -114,7 +114,7 @@ class MemoryUsageCache {
public:
// Retrieves the Singleton.
static MemoryUsageCache* GetInstance() {
- return Singleton<MemoryUsageCache>::get();
+ return base::Singleton<MemoryUsageCache>::get();
}
MemoryUsageCache() : memory_value_(0) { Init(); }

Powered by Google App Engine
This is Rietveld 408576698