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

Unified Diff: ipc/ipc_logging.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: ipc/ipc_logging.cc
diff --git a/ipc/ipc_logging.cc b/ipc/ipc_logging.cc
index da80b14dc95af54215f0fd35632fcbd5e3635d22..8b21eff2d3cb3f9fbcfd6e9627f695c921628c1f 100644
--- a/ipc/ipc_logging.cc
+++ b/ipc/ipc_logging.cc
@@ -77,7 +77,7 @@ Logging::~Logging() {
}
Logging* Logging::GetInstance() {
- return Singleton<Logging>::get();
+ return base::Singleton<Logging>::get();
}
void Logging::SetConsumer(Consumer* consumer) {

Powered by Google App Engine
This is Rietveld 408576698