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

Unified Diff: components/app_modal/app_modal_dialog_queue.h

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 | « chromeos/system/statistics_provider.cc ('k') | components/app_modal/app_modal_dialog_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/app_modal/app_modal_dialog_queue.h
diff --git a/components/app_modal/app_modal_dialog_queue.h b/components/app_modal/app_modal_dialog_queue.h
index 9fbf143d0b91991b2cdaa5a783cdadda5cdba309..77c85879b273a9c46d7e52a5cde7c519fbe8f924 100644
--- a/components/app_modal/app_modal_dialog_queue.h
+++ b/components/app_modal/app_modal_dialog_queue.h
@@ -9,7 +9,9 @@
#include "base/basictypes.h"
+namespace base {
template <typename T> struct DefaultSingletonTraits;
+}
namespace app_modal {
@@ -59,7 +61,7 @@ class AppModalDialogQueue {
iterator end() { return app_modal_dialog_queue_.end(); }
private:
- friend struct DefaultSingletonTraits<AppModalDialogQueue>;
+ friend struct base::DefaultSingletonTraits<AppModalDialogQueue>;
AppModalDialogQueue();
~AppModalDialogQueue();
« no previous file with comments | « chromeos/system/statistics_provider.cc ('k') | components/app_modal/app_modal_dialog_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698