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

Side by Side Diff: src/counters.h

Issue 2807333003: [api] Add DefineProperty() method that skips interceptors.
Patch Set: 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 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/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 V(Message_GetStartColumn) \ 583 V(Message_GetStartColumn) \
584 V(Module_Evaluate) \ 584 V(Module_Evaluate) \
585 V(Module_Instantiate) \ 585 V(Module_Instantiate) \
586 V(NumberObject_New) \ 586 V(NumberObject_New) \
587 V(NumberObject_NumberValue) \ 587 V(NumberObject_NumberValue) \
588 V(Object_CallAsConstructor) \ 588 V(Object_CallAsConstructor) \
589 V(Object_CallAsFunction) \ 589 V(Object_CallAsFunction) \
590 V(Object_CreateDataProperty) \ 590 V(Object_CreateDataProperty) \
591 V(Object_DefineOwnProperty) \ 591 V(Object_DefineOwnProperty) \
592 V(Object_DefineProperty) \ 592 V(Object_DefineProperty) \
593 V(Object_DefinePropertyWithoutInterceptors) \
593 V(Object_Delete) \ 594 V(Object_Delete) \
594 V(Object_DeleteProperty) \ 595 V(Object_DeleteProperty) \
595 V(Object_ForceSet) \ 596 V(Object_ForceSet) \
596 V(Object_Get) \ 597 V(Object_Get) \
597 V(Object_GetOwnPropertyDescriptor) \ 598 V(Object_GetOwnPropertyDescriptor) \
598 V(Object_GetOwnPropertyNames) \ 599 V(Object_GetOwnPropertyNames) \
599 V(Object_GetPropertyAttributes) \ 600 V(Object_GetPropertyAttributes) \
600 V(Object_GetPropertyNames) \ 601 V(Object_GetPropertyNames) \
601 V(Object_GetRealNamedProperty) \ 602 V(Object_GetRealNamedProperty) \
602 V(Object_GetRealNamedPropertyAttributes) \ 603 V(Object_GetRealNamedPropertyAttributes) \
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1338 1339
1339 explicit Counters(Isolate* isolate); 1340 explicit Counters(Isolate* isolate);
1340 1341
1341 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1342 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1342 }; 1343 };
1343 1344
1344 } // namespace internal 1345 } // namespace internal
1345 } // namespace v8 1346 } // namespace v8
1346 1347
1347 #endif // V8_COUNTERS_H_ 1348 #endif // V8_COUNTERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698