Standardize usage of virtual/override/final in chrome/browser/ui/
[chromium-blink-merge.git] / chrome / browser / ui / webui / constrained_web_dialog_delegate_base.h
blob2a4d442abbc9ed1398e7e8fdde7ee5fb6019762c
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_WEBUI_CONSTRAINED_WEB_DIALOG_DELEGATE_BASE_H_
6 #define CHROME_BROWSER_UI_WEBUI_CONSTRAINED_WEB_DIALOG_DELEGATE_BASE_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/browser/ui/webui/constrained_web_dialog_ui.h"
10 #include "ui/web_dialogs/web_dialog_ui.h"
11 #include "ui/web_dialogs/web_dialog_web_contents_delegate.h"
13 namespace content {
14 class BrowserContext;
17 namespace ui {
18 class WebDialogDelegate;
21 // Platform-agnostic base implementation of ConstrainedWebDialogDelegate.
22 class ConstrainedWebDialogDelegateBase
23 : public ConstrainedWebDialogDelegate,
24 public ui::WebDialogWebContentsDelegate {
25 public:
26 ConstrainedWebDialogDelegateBase(content::BrowserContext* browser_context,
27 ui::WebDialogDelegate* delegate,
28 WebDialogWebContentsDelegate* tab_delegate);
29 ~ConstrainedWebDialogDelegateBase() override;
31 bool closed_via_webui() const;
33 // ConstrainedWebDialogDelegate interface.
34 const ui::WebDialogDelegate* GetWebDialogDelegate() const override;
35 ui::WebDialogDelegate* GetWebDialogDelegate() override;
36 void OnDialogCloseFromWebUI() override;
37 void ReleaseWebContentsOnDialogClose() override;
38 web_modal::NativeWebContentsModalDialog GetNativeDialog() override;
39 content::WebContents* GetWebContents() override;
41 // WebDialogWebContentsDelegate interface.
42 void HandleKeyboardEvent(
43 content::WebContents* source,
44 const content::NativeWebKeyboardEvent& event) override;
46 private:
47 scoped_ptr<ui::WebDialogDelegate> web_dialog_delegate_;
49 // Holds the HTML to display in the constrained dialog.
50 scoped_ptr<content::WebContents> web_contents_;
52 // Was the dialog closed from WebUI (in which case |web_dialog_delegate_|'s
53 // OnDialogClosed() method has already been called)?
54 bool closed_via_webui_;
56 // If true, release |web_contents_| on close instead of destroying it.
57 bool release_contents_on_close_;
59 scoped_ptr<WebDialogWebContentsDelegate> override_tab_delegate_;
61 DISALLOW_COPY_AND_ASSIGN(ConstrainedWebDialogDelegateBase);
64 #endif // CHROME_BROWSER_UI_WEBUI_CONSTRAINED_WEB_DIALOG_DELEGATE_BASE_H_