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

Side by Side Diff: include/v8.h

Issue 664473002: Pass an Isolate to v8::VisitHandlesWithClassIds (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/api.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 /** \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 5276 matching lines...) Expand 10 before | Expand all | Expand 10 after
5287 */ 5287 */
5288 static void VisitExternalResources(ExternalResourceVisitor* visitor); 5288 static void VisitExternalResources(ExternalResourceVisitor* visitor);
5289 5289
5290 /** 5290 /**
5291 * Iterates through all the persistent handles in the current isolate's heap 5291 * Iterates through all the persistent handles in the current isolate's heap
5292 * that have class_ids. 5292 * that have class_ids.
5293 */ 5293 */
5294 static void VisitHandlesWithClassIds(PersistentHandleVisitor* visitor); 5294 static void VisitHandlesWithClassIds(PersistentHandleVisitor* visitor);
5295 5295
5296 /** 5296 /**
5297 * Iterates through all the persistent handles in isolate's heap that have
5298 * class_ids.
5299 */
5300 static void VisitHandlesWithClassIds(
5301 Isolate* isolate, PersistentHandleVisitor* visitor);
5302
5303 /**
5297 * Iterates through all the persistent handles in the current isolate's heap 5304 * Iterates through all the persistent handles in the current isolate's heap
5298 * that have class_ids and are candidates to be marked as partially dependent 5305 * that have class_ids and are candidates to be marked as partially dependent
5299 * handles. This will visit handles to young objects created since the last 5306 * handles. This will visit handles to young objects created since the last
5300 * garbage collection but is free to visit an arbitrary superset of these 5307 * garbage collection but is free to visit an arbitrary superset of these
5301 * objects. 5308 * objects.
5302 */ 5309 */
5303 static void VisitHandlesForPartialDependence( 5310 static void VisitHandlesForPartialDependence(
5304 Isolate* isolate, PersistentHandleVisitor* visitor); 5311 Isolate* isolate, PersistentHandleVisitor* visitor);
5305 5312
5306 /** 5313 /**
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after
7047 */ 7054 */
7048 7055
7049 7056
7050 } // namespace v8 7057 } // namespace v8
7051 7058
7052 7059
7053 #undef TYPE_CHECK 7060 #undef TYPE_CHECK
7054 7061
7055 7062
7056 #endif // V8_H_ 7063 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698