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

Unified Diff: components/sessions/content/content_serialized_navigation_driver.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
Index: components/sessions/content/content_serialized_navigation_driver.cc
diff --git a/components/sessions/content/content_serialized_navigation_driver.cc b/components/sessions/content/content_serialized_navigation_driver.cc
index 9164772b32b60b79c2ada85496c0fffb2ffc3dca..bd0fd90489bcd255e389eaa81c5d7d1bf61b56c0 100644
--- a/components/sessions/content/content_serialized_navigation_driver.cc
+++ b/components/sessions/content/content_serialized_navigation_driver.cc
@@ -27,8 +27,9 @@ SerializedNavigationDriver* SerializedNavigationDriver::Get() {
// static
ContentSerializedNavigationDriver*
ContentSerializedNavigationDriver::GetInstance() {
- return Singleton<ContentSerializedNavigationDriver,
- LeakySingletonTraits<ContentSerializedNavigationDriver>>::get();
+ return base::Singleton<
+ ContentSerializedNavigationDriver,
+ base::LeakySingletonTraits<ContentSerializedNavigationDriver>>::get();
}
ContentSerializedNavigationDriver::ContentSerializedNavigationDriver() {

Powered by Google App Engine
This is Rietveld 408576698