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

Unified Diff: chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h

Issue 648833004: Componentize app_modal_dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 2 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: chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h
diff --git a/chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h b/chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h
deleted file mode 100644
index 28cf5841f3c05e87d40a647b5ab15ba02bcea3c0..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/app_modal_dialogs/app_modal_dialog.h
+++ /dev/null
@@ -1,92 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_APP_MODAL_DIALOGS_APP_MODAL_DIALOG_H_
-#define CHROME_BROWSER_UI_APP_MODAL_DIALOGS_APP_MODAL_DIALOG_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/strings/string16.h"
-#include "build/build_config.h"
-
-class NativeAppModalDialog;
-
-namespace content {
-class WebContents;
-}
-
-// A controller+model base class for modal dialogs.
-class AppModalDialog {
- public:
- // A union of data necessary to determine the type of message box to
- // show.
- AppModalDialog(content::WebContents* web_contents,
- const base::string16& title);
- virtual ~AppModalDialog();
-
- // Called by the AppModalDialogQueue to show this dialog.
- void ShowModalDialog();
-
- // Called by the AppModalDialogQueue to activate the dialog.
- void ActivateModalDialog();
-
- // Closes the dialog if it is showing.
- void CloseModalDialog();
-
- // Completes dialog handling, shows next modal dialog from the queue.
- // TODO(beng): Get rid of this method.
- void CompleteDialog();
-
- base::string16 title() const { return title_; }
- NativeAppModalDialog* native_dialog() const { return native_dialog_; }
- content::WebContents* web_contents() const { return web_contents_; }
-
- // Creates an implementation of NativeAppModalDialog and shows it.
- // When the native dialog is closed, the implementation of
- // NativeAppModalDialog should call OnAccept or OnCancel to notify the
- // renderer of the user's action. The NativeAppModalDialog is also
- // expected to delete the AppModalDialog associated with it.
- void CreateAndShowDialog();
-
- // Returns true if the dialog is still valid. As dialogs are created they are
- // added to the AppModalDialogQueue. When the current modal dialog finishes
- // and it's time to show the next dialog in the queue IsValid is invoked.
- // If IsValid returns false the dialog is deleted and not shown.
- bool IsValid();
-
- // Methods overridable by AppModalDialog subclasses:
-
- // Invalidates the dialog, therefore causing it to not be shown when its turn
- // to be shown comes around.
- virtual void Invalidate();
-
- // Used only for testing. Returns whether the dialog is a JavaScript modal
- // dialog.
- virtual bool IsJavaScriptModalDialog();
-
- protected:
- // Overridden by subclasses to create the feature-specific native dialog box.
- virtual NativeAppModalDialog* CreateNativeDialog() = 0;
-
- private:
- // Information about the message box is held in the following variables.
- base::string16 title_;
-
- // True if CompleteDialog was called.
- bool completed_;
-
- // False if the dialog should no longer be shown, e.g. because the underlying
- // tab navigated away while the dialog was queued.
- bool valid_;
-
- // The toolkit-specific implementation of the app modal dialog box.
- NativeAppModalDialog* native_dialog_;
-
- content::WebContents* web_contents_;
-
- DISALLOW_COPY_AND_ASSIGN(AppModalDialog);
-};
-
-#endif // CHROME_BROWSER_UI_APP_MODAL_DIALOGS_APP_MODAL_DIALOG_H_

Powered by Google App Engine
This is Rietveld 408576698