Chromium Code Reviews| Index: chrome/browser/ui/native_web_contents_modal_dialog_manager.h |
| diff --git a/chrome/browser/ui/native_web_contents_modal_dialog_manager.h b/chrome/browser/ui/native_web_contents_modal_dialog_manager.h |
| index c40596ff2c0fa1609ee25551a2b1802442cb6bc6..96ee0dd2d9b9108fef45f2ed72d4e28b11d25cfb 100644 |
| --- a/chrome/browser/ui/native_web_contents_modal_dialog_manager.h |
| +++ b/chrome/browser/ui/native_web_contents_modal_dialog_manager.h |
| @@ -7,6 +7,21 @@ |
| #include "chrome/browser/ui/native_web_contents_modal_dialog.h" |
| +class WebContentsModalDialog; |
| + |
| +// Interface from NativeWebContentsModalDialogManager to |
| +// WebContentsModalDialogManager. |
| +class NativeWebContentsModalDialogManagerDelegate { |
| + public: |
| + NativeWebContentsModalDialogManagerDelegate() {} |
| + ~NativeWebContentsModalDialogManagerDelegate() {} |
|
Ben Goodger (Google)
2013/02/16 00:53:16
virtual dtor
Mike Wittman
2013/02/16 01:41:15
Done.
|
| + |
| + virtual void WillClose(WebContentsModalDialog* dialog) = 0; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(NativeWebContentsModalDialogManagerDelegate); |
| +}; |
| + |
| // Provides an interface for platform-specific UI implementation for the web |
| // contents modal dialog. |
| class NativeWebContentsModalDialogManager { |