Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // Copyright (c) 2008 The Chromium Authors. All rights reserved. |
michael@0 | 2 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | // found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | #include "base/scoped_nsautorelease_pool.h" |
michael@0 | 6 | |
michael@0 | 7 | #import <Foundation/Foundation.h> |
michael@0 | 8 | |
michael@0 | 9 | #include "base/logging.h" |
michael@0 | 10 | |
michael@0 | 11 | namespace base { |
michael@0 | 12 | |
michael@0 | 13 | ScopedNSAutoreleasePool::ScopedNSAutoreleasePool() |
michael@0 | 14 | : autorelease_pool_([[NSAutoreleasePool alloc] init]) { |
michael@0 | 15 | DCHECK(autorelease_pool_); |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | ScopedNSAutoreleasePool::~ScopedNSAutoreleasePool() { |
michael@0 | 19 | [autorelease_pool_ drain]; |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | // Cycle the internal pool, allowing everything there to get cleaned up and |
michael@0 | 23 | // start anew. |
michael@0 | 24 | void ScopedNSAutoreleasePool::Recycle() { |
michael@0 | 25 | [autorelease_pool_ drain]; |
michael@0 | 26 | autorelease_pool_ = [[NSAutoreleasePool alloc] init]; |
michael@0 | 27 | DCHECK(autorelease_pool_); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | } // namespace base |