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

Side by Side Diff: base/weak_ptr.cc

Issue 6385003: Properly order the cc files based off the h files in base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « base/process_util_linux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/weak_ptr.h" 5 #include "base/weak_ptr.h"
6 6
7 namespace base { 7 namespace base {
8 namespace internal { 8 namespace internal {
9 9
10 WeakReference::Flag::Flag(Flag** handle) : handle_(handle) { 10 WeakReference::Flag::Flag(Flag** handle) : handle_(handle) {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 void WeakReferenceOwner::Invalidate() { 54 void WeakReferenceOwner::Invalidate() {
55 if (flag_) { 55 if (flag_) {
56 flag_->Invalidate(); 56 flag_->Invalidate();
57 flag_ = NULL; 57 flag_ = NULL;
58 } 58 }
59 } 59 }
60 60
61 WeakPtrBase::WeakPtrBase() { 61 WeakPtrBase::WeakPtrBase() {
62 } 62 }
63 63
64 WeakPtrBase::~WeakPtrBase() {
65 }
66
64 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) { 67 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
65 } 68 }
66 69
67 WeakPtrBase::~WeakPtrBase() {
68 }
69
70 } // namespace internal 70 } // namespace internal
71 } // namespace base 71 } // namespace base
OLDNEW
« no previous file with comments | « base/process_util_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698