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

Side by Side Diff: src/counters.h

Issue 2549083002: [counters] Move waiting for more data from background-parsing into callbacks (Closed)
Patch Set: Addressed comments Created 4 years 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 | « no previous file | src/parsing/parser.cc » ('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/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 V(FunctionCallback) \ 695 V(FunctionCallback) \
696 V(GC) \ 696 V(GC) \
697 V(GC_AllAvailableGarbage) \ 697 V(GC_AllAvailableGarbage) \
698 V(GCEpilogueCallback) \ 698 V(GCEpilogueCallback) \
699 V(GCPrologueCallback) \ 699 V(GCPrologueCallback) \
700 V(GenericNamedPropertyDefinerCallback) \ 700 V(GenericNamedPropertyDefinerCallback) \
701 V(GenericNamedPropertyDeleterCallback) \ 701 V(GenericNamedPropertyDeleterCallback) \
702 V(GenericNamedPropertyDescriptorCallback) \ 702 V(GenericNamedPropertyDescriptorCallback) \
703 V(GenericNamedPropertyQueryCallback) \ 703 V(GenericNamedPropertyQueryCallback) \
704 V(GenericNamedPropertySetterCallback) \ 704 V(GenericNamedPropertySetterCallback) \
705 V(GetMoreDataCallback) \
705 V(IndexedPropertyDefinerCallback) \ 706 V(IndexedPropertyDefinerCallback) \
706 V(IndexedPropertyDeleterCallback) \ 707 V(IndexedPropertyDeleterCallback) \
707 V(IndexedPropertyDescriptorCallback) \ 708 V(IndexedPropertyDescriptorCallback) \
708 V(IndexedPropertyGetterCallback) \ 709 V(IndexedPropertyGetterCallback) \
709 V(IndexedPropertyQueryCallback) \ 710 V(IndexedPropertyQueryCallback) \
710 V(IndexedPropertySetterCallback) \ 711 V(IndexedPropertySetterCallback) \
711 V(InvokeApiInterruptCallbacks) \ 712 V(InvokeApiInterruptCallbacks) \
712 V(InvokeFunctionCallback) \ 713 V(InvokeFunctionCallback) \
713 V(JS_Execution) \ 714 V(JS_Execution) \
714 V(Map_SetPrototype) \ 715 V(Map_SetPrototype) \
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 1328
1328 explicit Counters(Isolate* isolate); 1329 explicit Counters(Isolate* isolate);
1329 1330
1330 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1331 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1331 }; 1332 };
1332 1333
1333 } // namespace internal 1334 } // namespace internal
1334 } // namespace v8 1335 } // namespace v8
1335 1336
1336 #endif // V8_COUNTERS_H_ 1337 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « no previous file | src/parsing/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698