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

Side by Side Diff: runtime/vm/dart.h

Issue 14927003: Revert 22380 to investigate windows build break. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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 | « runtime/vm/bootstrap.cc ('k') | runtime/vm/dart.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_DART_H_ 5 #ifndef VM_DART_H_
6 #define VM_DART_H_ 6 #define VM_DART_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 10
11 namespace dart { 11 namespace dart {
12 12
13 // Forward declarations. 13 // Forward declarations.
14 class DebugInfo; 14 class DebugInfo;
15 class Isolate; 15 class Isolate;
16 class RawError; 16 class RawError;
17 class ReadOnlyHandles; 17 class ReadOnlyHandles;
18 class ThreadPool; 18 class ThreadPool;
19 19
20 class Dart : public AllStatic { 20 class Dart : public AllStatic {
21 public: 21 public:
22 static const char* InitOnce( 22 static const char* InitOnce(
23 Dart_IsolateCreateCallback create, 23 Dart_IsolateCreateCallback create,
24 Dart_IsolateInterruptCallback interrupt, 24 Dart_IsolateInterruptCallback interrupt,
25 Dart_IsolateUnhandledExceptionCallback unhandled, 25 Dart_IsolateUnhandledExceptionCallback unhandled,
26 Dart_IsolateShutdownCallback shutdown, 26 Dart_IsolateShutdownCallback shutdown,
27 Dart_FileOpenCallback file_open, 27 Dart_FileOpenCallback file_open,
28 Dart_FileReadCallback file_read,
29 Dart_FileWriteCallback file_write, 28 Dart_FileWriteCallback file_write,
30 Dart_FileCloseCallback file_close); 29 Dart_FileCloseCallback file_close);
31 30
32 static Isolate* CreateIsolate(const char* name_prefix); 31 static Isolate* CreateIsolate(const char* name_prefix);
33 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data); 32 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data);
34 static void ShutdownIsolate(); 33 static void ShutdownIsolate();
35 34
36 static Isolate* vm_isolate() { return vm_isolate_; } 35 static Isolate* vm_isolate() { return vm_isolate_; }
37 static ThreadPool* thread_pool() { return thread_pool_; } 36 static ThreadPool* thread_pool() { return thread_pool_; }
38 37
39 static void set_pprof_symbol_generator(DebugInfo* value) { 38 static void set_pprof_symbol_generator(DebugInfo* value) {
40 pprof_symbol_generator_ = value; 39 pprof_symbol_generator_ = value;
41 } 40 }
42 static DebugInfo* pprof_symbol_generator() { return pprof_symbol_generator_; } 41 static DebugInfo* pprof_symbol_generator() { return pprof_symbol_generator_; }
43 42
44 static uword AllocateReadOnlyHandle(); 43 static uword AllocateReadOnlyHandle();
45 static bool IsReadOnlyHandle(uword address); 44 static bool IsReadOnlyHandle(uword address);
46 45
47 private: 46 private:
48 static Isolate* vm_isolate_; 47 static Isolate* vm_isolate_;
49 static ThreadPool* thread_pool_; 48 static ThreadPool* thread_pool_;
50 static DebugInfo* pprof_symbol_generator_; 49 static DebugInfo* pprof_symbol_generator_;
51 static ReadOnlyHandles* predefined_handles_; 50 static ReadOnlyHandles* predefined_handles_;
52 }; 51 };
53 52
54 } // namespace dart 53 } // namespace dart
55 54
56 #endif // VM_DART_H_ 55 #endif // VM_DART_H_
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | runtime/vm/dart.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698