| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_MEDIA_DESKTOP_MEDIA_PICKER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_DESKTOP_MEDIA_PICKER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_DESKTOP_MEDIA_PICKER_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_DESKTOP_MEDIA_PICKER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "content/public/browser/desktop_media_id.h" | 13 #include "content/public/browser/desktop_media_id.h" |
| 14 #include "ui/gfx/native_widget_types.h" | 14 #include "ui/gfx/native_widget_types.h" |
| 15 | 15 |
| 16 class DesktopMediaList; | 16 class DesktopMediaList; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 std::unique_ptr<DesktopMediaList> screen_list, | 44 std::unique_ptr<DesktopMediaList> screen_list, |
| 45 std::unique_ptr<DesktopMediaList> window_list, | 45 std::unique_ptr<DesktopMediaList> window_list, |
| 46 std::unique_ptr<DesktopMediaList> tab_list, | 46 std::unique_ptr<DesktopMediaList> tab_list, |
| 47 bool request_audio, | 47 bool request_audio, |
| 48 const DoneCallback& done_callback) = 0; | 48 const DoneCallback& done_callback) = 0; |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPicker); | 51 DISALLOW_COPY_AND_ASSIGN(DesktopMediaPicker); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_MEDIA_DESKTOP_MEDIA_PICKER_H_ | 54 #endif // CHROME_BROWSER_MEDIA_WEBRTC_DESKTOP_MEDIA_PICKER_H_ |
| OLD | NEW |