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_CHROMEOS_EXTERNAL_PROTOCOL_DIALOG_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTERNAL_PROTOCOL_DIALOG_H_
10 #include "base/string16.h"
11 #include "base/time.h"
12 #include "ui/views/window/dialog_delegate.h"
24 // An external protocol dialog for ChromeOS. Unlike other platforms,
25 // ChromeOS does not support launching external program, therefore,
26 // this dialog simply says it is not supported.
27 class ExternalProtocolDialog
: public views::DialogDelegate
{
29 // RunExternalProtocolDialog calls this private constructor.
30 ExternalProtocolDialog(content::WebContents
* web_contents
, const GURL
& url
);
32 virtual ~ExternalProtocolDialog();
34 // views::DialogDelegate Methods:
35 virtual int GetDialogButtons() const OVERRIDE
;
36 virtual string16
GetDialogButtonLabel(ui::DialogButton button
) const OVERRIDE
;
37 virtual string16
GetWindowTitle() const OVERRIDE
;
38 virtual void DeleteDelegate() OVERRIDE
;
39 virtual bool Accept() OVERRIDE
;
40 virtual views::View
* GetContentsView() OVERRIDE
;
42 // views::WidgetDelegate Methods:
43 virtual const views::Widget
* GetWidget() const OVERRIDE
;
44 virtual views::Widget
* GetWidget() OVERRIDE
;
47 // The message box view whose commands we handle.
48 views::MessageBoxView
* message_box_view_
;
50 // The time at which this dialog was created.
51 base::TimeTicks creation_time_
;
53 // The scheme of the url.
56 DISALLOW_COPY_AND_ASSIGN(ExternalProtocolDialog
);
59 #endif // CHROME_BROWSER_CHROMEOS_EXTERNAL_PROTOCOL_DIALOG_H_