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

Side by Side Diff: src/counters.h

Issue 2272383002: [api] Add interceptor for defineProperty(). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@DefineProperty
Patch Set: Query descriptor triggers on defineProperty(). Created 4 years, 3 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/api-arguments-inl.h ('k') | src/objects.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 #ifndef V8_COUNTERS_H_ 5 #ifndef V8_COUNTERS_H_
6 #define V8_COUNTERS_H_ 6 #define V8_COUNTERS_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/base/platform/elapsed-timer.h" 10 #include "src/base/platform/elapsed-timer.h"
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 V(CompileCode) \ 670 V(CompileCode) \
671 V(CompileCodeLazy) \ 671 V(CompileCodeLazy) \
672 V(CompileDeserialize) \ 672 V(CompileDeserialize) \
673 V(CompileEval) \ 673 V(CompileEval) \
674 V(CompileFullCode) \ 674 V(CompileFullCode) \
675 V(CompileIgnition) \ 675 V(CompileIgnition) \
676 V(CompileSerialize) \ 676 V(CompileSerialize) \
677 V(DeoptimizeCode) \ 677 V(DeoptimizeCode) \
678 V(FunctionCallback) \ 678 V(FunctionCallback) \
679 V(GC) \ 679 V(GC) \
680 V(GenericNamedPropertyDefinerCallback) \
680 V(GenericNamedPropertyDeleterCallback) \ 681 V(GenericNamedPropertyDeleterCallback) \
681 V(GenericNamedPropertyQueryCallback) \ 682 V(GenericNamedPropertyQueryCallback) \
682 V(GenericNamedPropertySetterCallback) \ 683 V(GenericNamedPropertySetterCallback) \
684 V(IndexedPropertyDefinerCallback) \
683 V(IndexedPropertyDeleterCallback) \ 685 V(IndexedPropertyDeleterCallback) \
684 V(IndexedPropertyGetterCallback) \ 686 V(IndexedPropertyGetterCallback) \
685 V(IndexedPropertyQueryCallback) \ 687 V(IndexedPropertyQueryCallback) \
686 V(IndexedPropertySetterCallback) \ 688 V(IndexedPropertySetterCallback) \
687 V(InvokeFunctionCallback) \ 689 V(InvokeFunctionCallback) \
688 V(JS_Execution) \ 690 V(JS_Execution) \
689 V(Map_SetPrototype) \ 691 V(Map_SetPrototype) \
690 V(Map_TransitionToAccessorProperty) \ 692 V(Map_TransitionToAccessorProperty) \
691 V(Map_TransitionToDataProperty) \ 693 V(Map_TransitionToDataProperty) \
692 V(Object_DeleteProperty) \ 694 V(Object_DeleteProperty) \
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 1240
1239 explicit Counters(Isolate* isolate); 1241 explicit Counters(Isolate* isolate);
1240 1242
1241 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1243 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1242 }; 1244 };
1243 1245
1244 } // namespace internal 1246 } // namespace internal
1245 } // namespace v8 1247 } // namespace v8
1246 1248
1247 #endif // V8_COUNTERS_H_ 1249 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/api-arguments-inl.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698