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

Side by Side Diff: include/v8.h

Issue 2866008: [Isolates] Move contents of Top into Isolate.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: ensure we're synced Created 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/accessors.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 2007-2009 the V8 project authors. All rights reserved. 1 // Copyright 2007-2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 class Data; 128 class Data;
129 class AccessorInfo; 129 class AccessorInfo;
130 class StackTrace; 130 class StackTrace;
131 class StackFrame; 131 class StackFrame;
132 132
133 namespace internal { 133 namespace internal {
134 134
135 class Arguments; 135 class Arguments;
136 class Object; 136 class Object;
137 class Heap; 137 class Heap;
138 class Top; 138 class Isolate;
139 139
140 } 140 }
141 141
142 142
143 // --- W e a k H a n d l e s 143 // --- W e a k H a n d l e s
144 144
145 145
146 /** 146 /**
147 * A weak reference callback function. 147 * A weak reference callback function.
148 * 148 *
(...skipping 2729 matching lines...) Expand 10 before | Expand all | Expand 10 after
2878 2878
2879 private: 2879 private:
2880 void* next_; 2880 void* next_;
2881 void* exception_; 2881 void* exception_;
2882 void* message_; 2882 void* message_;
2883 bool is_verbose_ : 1; 2883 bool is_verbose_ : 1;
2884 bool can_continue_ : 1; 2884 bool can_continue_ : 1;
2885 bool capture_message_ : 1; 2885 bool capture_message_ : 1;
2886 bool rethrow_ : 1; 2886 bool rethrow_ : 1;
2887 2887
2888 friend class v8::internal::Top; 2888 friend class v8::internal::Isolate;
2889 }; 2889 };
2890 2890
2891 2891
2892 // --- C o n t e x t --- 2892 // --- C o n t e x t ---
2893 2893
2894 2894
2895 /** 2895 /**
2896 * Ignore 2896 * Ignore
2897 */ 2897 */
2898 class V8EXPORT ExtensionConfiguration { 2898 class V8EXPORT ExtensionConfiguration {
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
3580 3580
3581 } // namespace v8 3581 } // namespace v8
3582 3582
3583 3583
3584 #undef V8EXPORT 3584 #undef V8EXPORT
3585 #undef V8EXPORT_INLINE 3585 #undef V8EXPORT_INLINE
3586 #undef TYPE_CHECK 3586 #undef TYPE_CHECK
3587 3587
3588 3588
3589 #endif // V8_H_ 3589 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698