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

Side by Side Diff: src/v8.cc

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/v8.h ('k') | src/v8checks.h » ('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 #include "v8.h" 5 #include "src/v8.h"
6 6
7 #include "assembler.h" 7 #include "src/assembler.h"
8 #include "isolate.h" 8 #include "src/isolate.h"
9 #include "elements.h" 9 #include "src/elements.h"
10 #include "bootstrapper.h" 10 #include "src/bootstrapper.h"
11 #include "debug.h" 11 #include "src/debug.h"
12 #include "deoptimizer.h" 12 #include "src/deoptimizer.h"
13 #include "frames.h" 13 #include "src/frames.h"
14 #include "heap-profiler.h" 14 #include "src/heap-profiler.h"
15 #include "hydrogen.h" 15 #include "src/hydrogen.h"
16 #ifdef V8_USE_DEFAULT_PLATFORM 16 #ifdef V8_USE_DEFAULT_PLATFORM
17 #include "libplatform/default-platform.h" 17 #include "src/libplatform/default-platform.h"
18 #endif 18 #endif
19 #include "lithium-allocator.h" 19 #include "src/lithium-allocator.h"
20 #include "objects.h" 20 #include "src/objects.h"
21 #include "once.h" 21 #include "src/once.h"
22 #include "platform.h" 22 #include "src/platform.h"
23 #include "sampler.h" 23 #include "src/sampler.h"
24 #include "runtime-profiler.h" 24 #include "src/runtime-profiler.h"
25 #include "serialize.h" 25 #include "src/serialize.h"
26 #include "store-buffer.h" 26 #include "src/store-buffer.h"
27 27
28 namespace v8 { 28 namespace v8 {
29 namespace internal { 29 namespace internal {
30 30
31 V8_DECLARE_ONCE(init_once); 31 V8_DECLARE_ONCE(init_once);
32 32
33 v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL; 33 v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL;
34 v8::Platform* V8::platform_ = NULL; 34 v8::Platform* V8::platform_ = NULL;
35 35
36 36
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 platform_ = NULL; 127 platform_ = NULL;
128 } 128 }
129 129
130 130
131 v8::Platform* V8::GetCurrentPlatform() { 131 v8::Platform* V8::GetCurrentPlatform() {
132 ASSERT(platform_); 132 ASSERT(platform_);
133 return platform_; 133 return platform_;
134 } 134 }
135 135
136 } } // namespace v8::internal 136 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/v8.h ('k') | src/v8checks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698