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

Side by Side Diff: webrtc/modules/desktop_capture/shared_memory.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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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_SHARED_MEMORY_H_ 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_MEMORY_H_
12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_MEMORY_H_ 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_MEMORY_H_
13 13
14 #include <stddef.h> 14 #include <stddef.h>
15 15
16 #if defined(WEBRTC_WIN) 16 #if defined(WEBRTC_WIN)
17 #include <windows.h> 17 #include <windows.h>
18 #endif 18 #endif
19 19
20 #include <memory> 20 #include <memory>
21 21
22 #include "webrtc/base/constructormagic.h" 22 #include "webrtc/base/constructormagic.h"
23 #include "webrtc/base/scoped_ptr.h"
24 #include "webrtc/typedefs.h" 23 #include "webrtc/typedefs.h"
25 24
26 namespace webrtc { 25 namespace webrtc {
27 26
28 // SharedMemory is a base class for shared memory. It stores all required 27 // SharedMemory is a base class for shared memory. It stores all required
29 // parameters of the buffer, but doesn't have any logic to allocate or destroy 28 // parameters of the buffer, but doesn't have any logic to allocate or destroy
30 // the actual buffer. DesktopCapturer consumers that need to use shared memory 29 // the actual buffer. DesktopCapturer consumers that need to use shared memory
31 // for video frames must extend this class with creation and destruction logic 30 // for video frames must extend this class with creation and destruction logic
32 // specific for the target platform and then call 31 // specific for the target platform and then call
33 // DesktopCapturer::SetSharedMemoryFactory(). 32 // DesktopCapturer::SetSharedMemoryFactory().
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 virtual std::unique_ptr<SharedMemory> CreateSharedMemory(size_t size) = 0; 73 virtual std::unique_ptr<SharedMemory> CreateSharedMemory(size_t size) = 0;
75 74
76 private: 75 private:
77 RTC_DISALLOW_COPY_AND_ASSIGN(SharedMemoryFactory); 76 RTC_DISALLOW_COPY_AND_ASSIGN(SharedMemoryFactory);
78 }; 77 };
79 78
80 } // namespace webrtc 79 } // namespace webrtc
81 80
82 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_MEMORY_H_ 81 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_MEMORY_H_
83 82
OLDNEW
« no previous file with comments | « webrtc/modules/desktop_capture/desktop_capturer.h ('k') | webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698