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

Side by Side Diff: src/isolate.h

Issue 334763003: Start using OStreams. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Reformatted. Feedback addressed. Created 6 years, 5 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/ic.cc ('k') | src/log.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 #ifndef V8_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include "include/v8-debug.h" 8 #include "include/v8-debug.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 class ExternalReferenceTable; 51 class ExternalReferenceTable;
52 class Factory; 52 class Factory;
53 class FunctionInfoListener; 53 class FunctionInfoListener;
54 class HandleScopeImplementer; 54 class HandleScopeImplementer;
55 class HeapProfiler; 55 class HeapProfiler;
56 class HStatistics; 56 class HStatistics;
57 class HTracer; 57 class HTracer;
58 class InlineRuntimeFunctionsTable; 58 class InlineRuntimeFunctionsTable;
59 class InnerPointerToCodeCache; 59 class InnerPointerToCodeCache;
60 class MaterializedObjectStore; 60 class MaterializedObjectStore;
61 class NoAllocationStringAllocator;
62 class CodeAgingHelper; 61 class CodeAgingHelper;
63 class RegExpStack; 62 class RegExpStack;
64 class SaveContext; 63 class SaveContext;
65 class StringTracker; 64 class StringTracker;
66 class StubCache; 65 class StubCache;
67 class SweeperThread; 66 class SweeperThread;
68 class ThreadManager; 67 class ThreadManager;
69 class ThreadState; 68 class ThreadState;
70 class ThreadVisitor; // Defined in v8threads.h 69 class ThreadVisitor; // Defined in v8threads.h
71 class UnicodeCache; 70 class UnicodeCache;
(...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1525 } 1524 }
1526 1525
1527 EmbeddedVector<char, 128> filename_; 1526 EmbeddedVector<char, 128> filename_;
1528 FILE* file_; 1527 FILE* file_;
1529 int scope_depth_; 1528 int scope_depth_;
1530 }; 1529 };
1531 1530
1532 } } // namespace v8::internal 1531 } } // namespace v8::internal
1533 1532
1534 #endif // V8_ISOLATE_H_ 1533 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698