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

Side by Side Diff: chrome/browser/ui/views/extensions/device_permissions_dialog_view.h

Issue 633793002: Prompt for granting permission to access USB devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename UsbDevicesChosen -> OnUsbDevicesChosen. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_DEVICE_PERMISSIONS_DIALOG_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_DEVICE_PERMISSIONS_DIALOG_VIEW_H_
7
8 #include "extensions/browser/api/device_permissions_prompt.h"
9 #include "ui/views/window/dialog_delegate.h"
10
11 namespace views {
12 class TableView;
13 }
14
15 class DevicePermissionsTableModel;
16
17 // Displays a device permissions selector prompt as a modal dialog constrained
18 // to the window/tab displaying the given web contents.
19 class DevicePermissionsDialogView : public views::DialogDelegateView {
20 public:
21 DevicePermissionsDialogView(
22 extensions::DevicePermissionsPrompt::Delegate* delegate,
23 scoped_refptr<extensions::DevicePermissionsPrompt::Prompt> prompt);
24 virtual ~DevicePermissionsDialogView();
25
26 // Overriding views::DialogDelegate.
27 virtual bool Cancel() override;
28 virtual bool Accept() override;
29
30 // Overriding views::DialogModel.
31 virtual base::string16 GetDialogButtonLabel(
32 ui::DialogButton button) const override;
33
34 // Overriding views::WidgetDelegate.
35 virtual ui::ModalType GetModalType() const override;
36 virtual base::string16 GetWindowTitle() const override;
37
38 // Overriding views::View
39 virtual gfx::Size GetPreferredSize() const override;
40
41 private:
42 extensions::DevicePermissionsPrompt::Delegate* delegate_;
43 scoped_refptr<extensions::DevicePermissionsPrompt::Prompt> prompt_;
44
45 // Displays the list of devices.
46 views::TableView* table_view_;
47 scoped_ptr<DevicePermissionsTableModel> table_model_;
48 };
49
50 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_DEVICE_PERMISSIONS_DIALOG_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698