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

Side by Side Diff: src/objects-debug.cc

Issue 2045273002: Remove deprecated access check callbacks (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project 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 "src/objects.h" 5 #include "src/objects.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/disasm.h" 8 #include "src/disasm.h"
9 #include "src/disassembler.h" 9 #include "src/disassembler.h"
10 #include "src/field-type.h" 10 #include "src/field-type.h"
(...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 924
925 void AccessorPair::AccessorPairVerify() { 925 void AccessorPair::AccessorPairVerify() {
926 CHECK(IsAccessorPair()); 926 CHECK(IsAccessorPair());
927 VerifyPointer(getter()); 927 VerifyPointer(getter());
928 VerifyPointer(setter()); 928 VerifyPointer(setter());
929 } 929 }
930 930
931 931
932 void AccessCheckInfo::AccessCheckInfoVerify() { 932 void AccessCheckInfo::AccessCheckInfoVerify() {
933 CHECK(IsAccessCheckInfo()); 933 CHECK(IsAccessCheckInfo());
934 VerifyPointer(named_callback());
935 VerifyPointer(indexed_callback());
936 VerifyPointer(callback()); 934 VerifyPointer(callback());
937 VerifyPointer(data()); 935 VerifyPointer(data());
938 } 936 }
939 937
940 938
941 void InterceptorInfo::InterceptorInfoVerify() { 939 void InterceptorInfo::InterceptorInfoVerify() {
942 CHECK(IsInterceptorInfo()); 940 CHECK(IsInterceptorInfo());
943 VerifyPointer(getter()); 941 VerifyPointer(getter());
944 VerifyPointer(setter()); 942 VerifyPointer(setter());
945 VerifyPointer(query()); 943 VerifyPointer(query());
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 1323
1326 // Both are done at the same time. 1324 // Both are done at the same time.
1327 CHECK_EQ(new_it.done(), old_it.done()); 1325 CHECK_EQ(new_it.done(), old_it.done());
1328 } 1326 }
1329 1327
1330 1328
1331 #endif // DEBUG 1329 #endif // DEBUG
1332 1330
1333 } // namespace internal 1331 } // namespace internal
1334 } // namespace v8 1332 } // namespace v8
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698