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

Side by Side Diff: webrtc/base/platform_thread.h

Issue 1920043002: Replace scoped_ptr with unique_ptr in webrtc/base/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 years, 8 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
« no previous file with comments | « webrtc/base/physicalsocketserver_unittest.cc ('k') | webrtc/base/platform_thread_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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_BASE_PLATFORM_THREAD_H_ 11 #ifndef WEBRTC_BASE_PLATFORM_THREAD_H_
12 #define WEBRTC_BASE_PLATFORM_THREAD_H_ 12 #define WEBRTC_BASE_PLATFORM_THREAD_H_
13 13
14 #include <string> 14 #include <string>
15 15
16 #include "webrtc/base/constructormagic.h" 16 #include "webrtc/base/constructormagic.h"
17 #include "webrtc/base/event.h" 17 #include "webrtc/base/event.h"
18 #include "webrtc/base/platform_thread_types.h" 18 #include "webrtc/base/platform_thread_types.h"
19 #include "webrtc/base/scoped_ptr.h"
20 #include "webrtc/base/thread_checker.h" 19 #include "webrtc/base/thread_checker.h"
21 20
22 namespace rtc { 21 namespace rtc {
23 22
24 PlatformThreadId CurrentThreadId(); 23 PlatformThreadId CurrentThreadId();
25 PlatformThreadRef CurrentThreadRef(); 24 PlatformThreadRef CurrentThreadRef();
26 25
27 // Compares two thread identifiers for equality. 26 // Compares two thread identifiers for equality.
28 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b); 27 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b);
29 28
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 rtc::Event stop_event_; 103 rtc::Event stop_event_;
105 104
106 pthread_t thread_; 105 pthread_t thread_;
107 #endif // defined(WEBRTC_WIN) 106 #endif // defined(WEBRTC_WIN)
108 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread); 107 RTC_DISALLOW_COPY_AND_ASSIGN(PlatformThread);
109 }; 108 };
110 109
111 } // namespace rtc 110 } // namespace rtc
112 111
113 #endif // WEBRTC_BASE_PLATFORM_THREAD_H_ 112 #endif // WEBRTC_BASE_PLATFORM_THREAD_H_
OLDNEW
« no previous file with comments | « webrtc/base/physicalsocketserver_unittest.cc ('k') | webrtc/base/platform_thread_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698