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

Unified Diff: chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc

Issue 5519016: Add a new GetInstance() method for singleton classes used in chrome/browser files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years 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: chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc
diff --git a/chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc b/chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc
index c29abe0603d6eb37984e00bc9c8ad48b189609a2..924f7c0a093b2a7a87d73d95c420f37d46942a7d 100644
--- a/chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc
+++ b/chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.cc
@@ -38,6 +38,11 @@ AppModalDialogQueue::AppModalDialogQueue()
AppModalDialogQueue::~AppModalDialogQueue() {}
+// static
+AppModalDialogQueue* AppModalDialogQueue::GetInstance() {
+ return Singleton<AppModalDialogQueue>::get();
+}
+
void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) {
// Be sure and set the active_dialog_ field first, otherwise if
// ShowModalDialog triggers a call back to the queue they'll get the old

Powered by Google App Engine
This is Rietveld 408576698