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

Side by Side Diff: include/v8.h

Issue 1041863002: Use counter for legacy const. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ready for review Created 5 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
« no previous file with comments | « no previous file | src/parser.cc » ('j') | src/parser.cc » ('J')
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 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 5117 matching lines...) Expand 10 before | Expand all | Expand 10 after
5128 /** 5128 /**
5129 * Types of garbage collections that can be requested via 5129 * Types of garbage collections that can be requested via
5130 * RequestGarbageCollectionForTesting. 5130 * RequestGarbageCollectionForTesting.
5131 */ 5131 */
5132 enum GarbageCollectionType { 5132 enum GarbageCollectionType {
5133 kFullGarbageCollection, 5133 kFullGarbageCollection,
5134 kMinorGarbageCollection 5134 kMinorGarbageCollection
5135 }; 5135 };
5136 5136
5137 /** 5137 /**
5138 * Features reported via the SetUseCounterCallback callback. Do not chang 5138 * Features reported via the SetUseCounterCallback callback. Do not change
5139 * assigned numbers of existing items; add new features to the end of this 5139 * assigned numbers of existing items; add new features to the end of this
5140 * list. 5140 * list.
5141 */ 5141 */
5142 enum UseCounterFeature { 5142 enum UseCounterFeature {
5143 kUseAsm = 0, 5143 kUseAsm = 0,
5144 kBreakIterator = 1, 5144 kBreakIterator = 1,
5145 kLegacyConst = 2, 5145 kLegacyConst = 2,
5146 kUseCounterFeatureCount // This enum value must be last. 5146 kUseCounterFeatureCount // This enum value must be last.
5147 }; 5147 };
5148 5148
(...skipping 2908 matching lines...) Expand 10 before | Expand all | Expand 10 after
8057 */ 8057 */
8058 8058
8059 8059
8060 } // namespace v8 8060 } // namespace v8
8061 8061
8062 8062
8063 #undef TYPE_CHECK 8063 #undef TYPE_CHECK
8064 8064
8065 8065
8066 #endif // V8_H_ 8066 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/parser.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698