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

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

Issue 1917043005: #include "webrtc/base/constructormagic.h" where appropriate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
« no previous file with comments | « webrtc/base/rollingaccumulator.h ('k') | webrtc/base/scopedptrcollection_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 2008 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2008 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 // Automatically initialize and and free an autoreleasepool. Never allocate 11 // Automatically initialize and and free an autoreleasepool. Never allocate
12 // an instance of this class using "new" - that will result in a compile-time 12 // an instance of this class using "new" - that will result in a compile-time
13 // error. Only use it as a stack object. 13 // error. Only use it as a stack object.
14 // 14 //
15 // Note: NSAutoreleasePool docs say that you should not normally need to 15 // Note: NSAutoreleasePool docs say that you should not normally need to
16 // declare an NSAutoreleasePool as a member of an object - but there's nothing 16 // declare an NSAutoreleasePool as a member of an object - but there's nothing
17 // that indicates it will be a problem, as long as the stack lifetime of the 17 // that indicates it will be a problem, as long as the stack lifetime of the
18 // pool exactly matches the stack lifetime of the object. 18 // pool exactly matches the stack lifetime of the object.
19 19
20 #ifndef WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__ 20 #ifndef WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__
21 #define WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__ 21 #define WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__
22 22
23 #if defined(WEBRTC_MAC) 23 #if defined(WEBRTC_MAC)
24 24
25 #include "webrtc/base/common.h" 25 #include "webrtc/base/common.h"
26 #include "webrtc/base/constructormagic.h"
26 27
27 // This header may be included from Obj-C files or C++ files. 28 // This header may be included from Obj-C files or C++ files.
28 #ifdef __OBJC__ 29 #ifdef __OBJC__
29 @class NSAutoreleasePool; 30 @class NSAutoreleasePool;
30 #else 31 #else
31 class NSAutoreleasePool; 32 class NSAutoreleasePool;
32 #endif 33 #endif
33 34
34 namespace rtc { 35 namespace rtc {
35 36
(...skipping 14 matching lines...) Expand all
50 51
51 NSAutoreleasePool* pool_; 52 NSAutoreleasePool* pool_;
52 53
53 RTC_DISALLOW_COPY_AND_ASSIGN(ScopedAutoreleasePool); 54 RTC_DISALLOW_COPY_AND_ASSIGN(ScopedAutoreleasePool);
54 }; 55 };
55 56
56 } // namespace rtc 57 } // namespace rtc
57 58
58 #endif // WEBRTC_MAC 59 #endif // WEBRTC_MAC
59 #endif // WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__ 60 #endif // WEBRTC_BASE_SCOPED_AUTORELEASE_POOL_H__
OLDNEW
« no previous file with comments | « webrtc/base/rollingaccumulator.h ('k') | webrtc/base/scopedptrcollection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698