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_MEDIA_PICKER_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
7 | 7 |
8 #include "chrome/browser/media/desktop_media_list_observer.h" | 8 #include "chrome/browser/media/desktop_media_list_observer.h" |
9 #include "chrome/browser/media/desktop_media_picker.h" | 9 #include "chrome/browser/media/desktop_media_picker.h" |
10 #include "ui/views/window/dialog_delegate.h" | 10 #include "ui/views/window/dialog_delegate.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 bool selected_; | 101 bool selected_; |
102 | 102 |
103 DISALLOW_COPY_AND_ASSIGN(DesktopMediaSourceView); | 103 DISALLOW_COPY_AND_ASSIGN(DesktopMediaSourceView); |
104 }; | 104 }; |
105 | 105 |
106 // Dialog view used for DesktopMediaPickerViews. | 106 // Dialog view used for DesktopMediaPickerViews. |
107 class DesktopMediaPickerDialogView : public views::DialogDelegateView { | 107 class DesktopMediaPickerDialogView : public views::DialogDelegateView { |
108 public: | 108 public: |
109 DesktopMediaPickerDialogView(content::WebContents* parent_web_contents, | 109 DesktopMediaPickerDialogView(content::WebContents* parent_web_contents, |
110 gfx::NativeWindow context, | 110 gfx::NativeWindow context, |
| 111 gfx::NativeWindow parent_window, |
111 DesktopMediaPickerViews* parent, | 112 DesktopMediaPickerViews* parent, |
112 const base::string16& app_name, | 113 const base::string16& app_name, |
113 const base::string16& target_name, | 114 const base::string16& target_name, |
114 scoped_ptr<DesktopMediaList> media_list); | 115 scoped_ptr<DesktopMediaList> media_list); |
115 virtual ~DesktopMediaPickerDialogView(); | 116 virtual ~DesktopMediaPickerDialogView(); |
116 | 117 |
117 // Called by parent (DesktopMediaPickerViews) when it's destroyed. | 118 // Called by parent (DesktopMediaPickerViews) when it's destroyed. |
118 void DetachParent(); | 119 void DetachParent(); |
119 | 120 |
120 // Called by DesktopMediaListView. | 121 // Called by DesktopMediaListView. |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 | 176 |
176 // The |dialog_| is owned by the corresponding views::Widget instance. | 177 // The |dialog_| is owned by the corresponding views::Widget instance. |
177 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed | 178 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed |
178 // asynchronously by closing the widget. | 179 // asynchronously by closing the widget. |
179 DesktopMediaPickerDialogView* dialog_; | 180 DesktopMediaPickerDialogView* dialog_; |
180 | 181 |
181 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); | 182 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); |
182 }; | 183 }; |
183 | 184 |
184 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 185 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
OLD | NEW |