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

Side by Side Diff: third_party/WebKit/Source/platform/heap/SelfKeepAlive.h

Issue 2816033003: Replace ASSERT with DHCECK_op in platform/heap (Closed)
Patch Set: Replace ASSERT with CHECK_op in platform/heap Created 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef SelfKeepAlive_h 5 #ifndef SelfKeepAlive_h
6 #define SelfKeepAlive_h 6 #define SelfKeepAlive_h
7 7
8 #include "platform/heap/Persistent.h" 8 #include "platform/heap/Persistent.h"
9 #include "platform/wtf/Allocator.h" 9 #include "platform/wtf/Allocator.h"
10 #include "platform/wtf/Assertions.h" 10 #include "platform/wtf/Assertions.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 Assign(self); 54 Assign(self);
55 return *this; 55 return *this;
56 } 56 }
57 57
58 void Clear() { keep_alive_.Clear(); } 58 void Clear() { keep_alive_.Clear(); }
59 59
60 explicit operator bool() const { return keep_alive_; } 60 explicit operator bool() const { return keep_alive_; }
61 61
62 private: 62 private:
63 void Assign(Self* self) { 63 void Assign(Self* self) {
64 ASSERT(!keep_alive_ || keep_alive_.Get() == self); 64 DCHECK(!keep_alive_ || keep_alive_.Get() == self);
65 keep_alive_ = self; 65 keep_alive_ = self;
66 } 66 }
67 67
68 GC_PLUGIN_IGNORE("420515") 68 GC_PLUGIN_IGNORE("420515")
69 Persistent<Self> keep_alive_; 69 Persistent<Self> keep_alive_;
70 }; 70 };
71 71
72 } // namespace blink 72 } // namespace blink
73 73
74 #endif // SelfKeepAlive_h 74 #endif // SelfKeepAlive_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698