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

Side by Side Diff: include/v8.h

Issue 2040813005: [snapshot] remove metadata field. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed nit Created 4 years, 6 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/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 5525 matching lines...) Expand 10 before | Expand all | Expand 10 after
5536 snapshot_blob(NULL), 5536 snapshot_blob(NULL),
5537 counter_lookup_callback(NULL), 5537 counter_lookup_callback(NULL),
5538 create_histogram_callback(NULL), 5538 create_histogram_callback(NULL),
5539 add_histogram_sample_callback(NULL), 5539 add_histogram_sample_callback(NULL),
5540 array_buffer_allocator(NULL) {} 5540 array_buffer_allocator(NULL) {}
5541 5541
5542 /** 5542 /**
5543 * The optional entry_hook allows the host application to provide the 5543 * The optional entry_hook allows the host application to provide the
5544 * address of a function that's invoked on entry to every V8-generated 5544 * address of a function that's invoked on entry to every V8-generated
5545 * function. Note that entry_hook is invoked at the very start of each 5545 * function. Note that entry_hook is invoked at the very start of each
5546 * generated function. Furthermore, if an entry_hook is given, V8 will 5546 * generated function. Furthermore, if an entry_hook is given, V8 will
5547 * always run without a context snapshot. 5547 * not use a snapshot, including custom snapshots.
5548 */ 5548 */
5549 FunctionEntryHook entry_hook; 5549 FunctionEntryHook entry_hook;
5550 5550
5551 /** 5551 /**
5552 * Allows the host application to provide the address of a function that is 5552 * Allows the host application to provide the address of a function that is
5553 * notified each time code is added, moved or removed. 5553 * notified each time code is added, moved or removed.
5554 */ 5554 */
5555 JitCodeEventHandler code_event_handler; 5555 JitCodeEventHandler code_event_handler;
5556 5556
5557 /** 5557 /**
(...skipping 3271 matching lines...) Expand 10 before | Expand all | Expand 10 after
8829 */ 8829 */
8830 8830
8831 8831
8832 } // namespace v8 8832 } // namespace v8
8833 8833
8834 8834
8835 #undef TYPE_CHECK 8835 #undef TYPE_CHECK
8836 8836
8837 8837
8838 #endif // INCLUDE_V8_H_ 8838 #endif // INCLUDE_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