OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "chrome/browser/media/desktop_media_picker.h" | 9 #include "chrome/browser/media/webrtc/desktop_media_picker.h" |
10 #include "ui/views/controls/label.h" | 10 #include "ui/views/controls/label.h" |
11 #include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h" | 11 #include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h" |
12 #include "ui/views/window/dialog_delegate.h" | 12 #include "ui/views/window/dialog_delegate.h" |
13 | 13 |
14 namespace views { | 14 namespace views { |
15 class Checkbox; | 15 class Checkbox; |
16 class TabbedPane; | 16 class TabbedPane; |
17 } // namespace views | 17 } // namespace views |
18 | 18 |
19 class DesktopMediaListView; | 19 class DesktopMediaListView; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 // The |dialog_| is owned by the corresponding views::Widget instance. | 114 // The |dialog_| is owned by the corresponding views::Widget instance. |
115 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed | 115 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed |
116 // asynchronously by closing the widget. | 116 // asynchronously by closing the widget. |
117 DesktopMediaPickerDialogView* dialog_; | 117 DesktopMediaPickerDialogView* dialog_; |
118 | 118 |
119 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); | 119 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); |
120 }; | 120 }; |
121 | 121 |
122 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 122 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
OLD | NEW |