| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; | 44 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 // DesktopMediaList::Observer interface | 47 // DesktopMediaList::Observer interface |
| 48 virtual void OnSourceAdded(int index) OVERRIDE; | 48 virtual void OnSourceAdded(int index) OVERRIDE; |
| 49 virtual void OnSourceRemoved(int index) OVERRIDE; | 49 virtual void OnSourceRemoved(int index) OVERRIDE; |
| 50 virtual void OnSourceMoved(int old_index, int new_index) OVERRIDE; | 50 virtual void OnSourceMoved(int old_index, int new_index) OVERRIDE; |
| 51 virtual void OnSourceNameChanged(int index) OVERRIDE; | 51 virtual void OnSourceNameChanged(int index) OVERRIDE; |
| 52 virtual void OnSourceThumbnailChanged(int index) OVERRIDE; | 52 virtual void OnSourceThumbnailChanged(int index) OVERRIDE; |
| 53 | 53 |
| 54 // Accepts whatever happens to be selected right now. |
| 55 void AcceptSelection(); |
| 56 |
| 54 DesktopMediaPickerDialogView* parent_; | 57 DesktopMediaPickerDialogView* parent_; |
| 55 scoped_ptr<DesktopMediaList> media_list_; | 58 scoped_ptr<DesktopMediaList> media_list_; |
| 59 base::WeakPtrFactory<DesktopMediaListView> weak_factory_; |
| 56 | 60 |
| 57 DISALLOW_COPY_AND_ASSIGN(DesktopMediaListView); | 61 DISALLOW_COPY_AND_ASSIGN(DesktopMediaListView); |
| 58 }; | 62 }; |
| 59 | 63 |
| 60 // View used for each item in DesktopMediaListView. Shows a single desktop media | 64 // View used for each item in DesktopMediaListView. Shows a single desktop media |
| 61 // source as a thumbnail with the title under it. | 65 // source as a thumbnail with the title under it. |
| 62 class DesktopMediaSourceView : public views::View { | 66 class DesktopMediaSourceView : public views::View { |
| 63 public: | 67 public: |
| 64 DesktopMediaSourceView(DesktopMediaListView* parent, | 68 DesktopMediaSourceView(DesktopMediaListView* parent, |
| 65 content::DesktopMediaID source_id); | 69 content::DesktopMediaID source_id); |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 180 |
| 177 // The |dialog_| is owned by the corresponding views::Widget instance. | 181 // The |dialog_| is owned by the corresponding views::Widget instance. |
| 178 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed | 182 // When DesktopMediaPickerViews is destroyed the |dialog_| is destroyed |
| 179 // asynchronously by closing the widget. | 183 // asynchronously by closing the widget. |
| 180 DesktopMediaPickerDialogView* dialog_; | 184 DesktopMediaPickerDialogView* dialog_; |
| 181 | 185 |
| 182 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); | 186 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPickerViews); |
| 183 }; | 187 }; |
| 184 | 188 |
| 185 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ | 189 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_MEDIA_PICKER_VIEWS_H_ |
| OLD | NEW |