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

Side by Side Diff: src/bootstrapper.cc

Issue 8117001: Remove #include "isolate-inl.h" from v8.h. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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/code-stubs.h » ('j') | src/frames.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 16 matching lines...) Expand all
27 27
28 #include "v8.h" 28 #include "v8.h"
29 29
30 #include "accessors.h" 30 #include "accessors.h"
31 #include "api.h" 31 #include "api.h"
32 #include "bootstrapper.h" 32 #include "bootstrapper.h"
33 #include "compiler.h" 33 #include "compiler.h"
34 #include "debug.h" 34 #include "debug.h"
35 #include "execution.h" 35 #include "execution.h"
36 #include "global-handles.h" 36 #include "global-handles.h"
37 #include "isolate-inl.h"
37 #include "macro-assembler.h" 38 #include "macro-assembler.h"
38 #include "natives.h" 39 #include "natives.h"
39 #include "objects-visiting.h" 40 #include "objects-visiting.h"
40 #include "snapshot.h" 41 #include "snapshot.h"
41 #include "extensions/externalize-string-extension.h" 42 #include "extensions/externalize-string-extension.h"
42 #include "extensions/gc-extension.h" 43 #include "extensions/gc-extension.h"
43 44
44 namespace v8 { 45 namespace v8 {
45 namespace internal { 46 namespace internal {
46 47
(...skipping 2218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2265 return from + sizeof(NestingCounterType); 2266 return from + sizeof(NestingCounterType);
2266 } 2267 }
2267 2268
2268 2269
2269 // Called when the top-level V8 mutex is destroyed. 2270 // Called when the top-level V8 mutex is destroyed.
2270 void Bootstrapper::FreeThreadResources() { 2271 void Bootstrapper::FreeThreadResources() {
2271 ASSERT(!IsActive()); 2272 ASSERT(!IsActive());
2272 } 2273 }
2273 2274
2274 } } // namespace v8::internal 2275 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/code-stubs.h » ('j') | src/frames.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698