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

Side by Side Diff: webrtc/modules/desktop_capture/cropping_window_capturer.h

Issue 1942823002: Remove webrtc/base/scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: fix additional scoped_ptr uses that had been added Created 4 years, 7 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
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/base/scoped_ptr.h"
17 #include "webrtc/modules/desktop_capture/desktop_capture_options.h" 16 #include "webrtc/modules/desktop_capture/desktop_capture_options.h"
18 #include "webrtc/modules/desktop_capture/screen_capturer.h" 17 #include "webrtc/modules/desktop_capture/screen_capturer.h"
19 #include "webrtc/modules/desktop_capture/window_capturer.h" 18 #include "webrtc/modules/desktop_capture/window_capturer.h"
20 19
21 namespace webrtc { 20 namespace webrtc {
22 21
23 // WindowCapturer implementation that uses a screen capturer to capture the 22 // WindowCapturer implementation that uses a screen capturer to capture the
24 // whole screen and crops the video frame to the window area when the captured 23 // whole screen and crops the video frame to the window area when the captured
25 // window is on top. 24 // window is on top.
26 class CroppingWindowCapturer : public WindowCapturer, 25 class CroppingWindowCapturer : public WindowCapturer,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 std::unique_ptr<WindowCapturer> window_capturer_; 67 std::unique_ptr<WindowCapturer> window_capturer_;
69 std::unique_ptr<ScreenCapturer> screen_capturer_; 68 std::unique_ptr<ScreenCapturer> screen_capturer_;
70 WindowId selected_window_; 69 WindowId selected_window_;
71 WindowId excluded_window_; 70 WindowId excluded_window_;
72 }; 71 };
73 72
74 } // namespace webrtc 73 } // namespace webrtc
75 74
76 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ 75 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_
77 76
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698