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

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

Issue 1410883006: Plumb accessing context through to access control callbacks (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/macro-assembler.h" 10 #include "src/macro-assembler.h"
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 CHECK(IsAccessorPair()); 922 CHECK(IsAccessorPair());
923 VerifyPointer(getter()); 923 VerifyPointer(getter());
924 VerifyPointer(setter()); 924 VerifyPointer(setter());
925 } 925 }
926 926
927 927
928 void AccessCheckInfo::AccessCheckInfoVerify() { 928 void AccessCheckInfo::AccessCheckInfoVerify() {
929 CHECK(IsAccessCheckInfo()); 929 CHECK(IsAccessCheckInfo());
930 VerifyPointer(named_callback()); 930 VerifyPointer(named_callback());
931 VerifyPointer(indexed_callback()); 931 VerifyPointer(indexed_callback());
932 VerifyPointer(callback());
932 VerifyPointer(data()); 933 VerifyPointer(data());
933 } 934 }
934 935
935 936
936 void InterceptorInfo::InterceptorInfoVerify() { 937 void InterceptorInfo::InterceptorInfoVerify() {
937 CHECK(IsInterceptorInfo()); 938 CHECK(IsInterceptorInfo());
938 VerifyPointer(getter()); 939 VerifyPointer(getter());
939 VerifyPointer(setter()); 940 VerifyPointer(setter());
940 VerifyPointer(query()); 941 VerifyPointer(query());
941 VerifyPointer(deleter()); 942 VerifyPointer(deleter());
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 1323
1323 // Both are done at the same time. 1324 // Both are done at the same time.
1324 CHECK_EQ(new_it.done(), old_it.done()); 1325 CHECK_EQ(new_it.done(), old_it.done());
1325 } 1326 }
1326 1327
1327 1328
1328 #endif // DEBUG 1329 #endif // DEBUG
1329 1330
1330 } // namespace internal 1331 } // namespace internal
1331 } // 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