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

Side by Side Diff: src/v8.h

Issue 78453003: Reland r17877 - Introduce a v8::Platform class that bundles embedder callbacks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 7 years, 1 month 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/default-platform.cc ('k') | src/v8.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 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #endif // defined(GOOGLE3) 43 #endif // defined(GOOGLE3)
44 44
45 // V8 only uses DEBUG, but included external files 45 // V8 only uses DEBUG, but included external files
46 // may use NDEBUG - make sure they are consistent. 46 // may use NDEBUG - make sure they are consistent.
47 #if defined(DEBUG) && defined(NDEBUG) 47 #if defined(DEBUG) && defined(NDEBUG)
48 #error both DEBUG and NDEBUG are set 48 #error both DEBUG and NDEBUG are set
49 #endif 49 #endif
50 50
51 // Basic includes 51 // Basic includes
52 #include "../include/v8.h" 52 #include "../include/v8.h"
53 #include "../include/v8-platform.h"
53 #include "v8globals.h" 54 #include "v8globals.h"
54 #include "v8checks.h" 55 #include "v8checks.h"
55 #include "allocation.h" 56 #include "allocation.h"
56 #include "assert-scope.h" 57 #include "assert-scope.h"
57 #include "v8utils.h" 58 #include "v8utils.h"
58 #include "flags.h" 59 #include "flags.h"
59 60
60 // Objects & heap 61 // Objects & heap
61 #include "objects-inl.h" 62 #include "objects-inl.h"
62 #include "spaces-inl.h" 63 #include "spaces-inl.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 105
105 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() { 106 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() {
106 return array_buffer_allocator_; 107 return array_buffer_allocator_;
107 } 108 }
108 109
109 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) { 110 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) {
110 CHECK_EQ(NULL, array_buffer_allocator_); 111 CHECK_EQ(NULL, array_buffer_allocator_);
111 array_buffer_allocator_ = allocator; 112 array_buffer_allocator_ = allocator;
112 } 113 }
113 114
115 static void InitializePlatform(v8::Platform* platform);
116 static void ShutdownPlatform();
117 static v8::Platform* GetCurrentPlatform();
118
114 private: 119 private:
115 static void InitializeOncePerProcessImpl(); 120 static void InitializeOncePerProcessImpl();
116 static void InitializeOncePerProcess(); 121 static void InitializeOncePerProcess();
117 122
118 // List of callbacks when a Call completes. 123 // List of callbacks when a Call completes.
119 static List<CallCompletedCallback>* call_completed_callbacks_; 124 static List<CallCompletedCallback>* call_completed_callbacks_;
120 // Allocator for external array buffers. 125 // Allocator for external array buffers.
121 static v8::ArrayBuffer::Allocator* array_buffer_allocator_; 126 static v8::ArrayBuffer::Allocator* array_buffer_allocator_;
127 // v8::Platform to use.
128 static v8::Platform* platform_;
122 }; 129 };
123 130
124 131
125 // JavaScript defines two kinds of 'nil'. 132 // JavaScript defines two kinds of 'nil'.
126 enum NilValue { kNullValue, kUndefinedValue }; 133 enum NilValue { kNullValue, kUndefinedValue };
127 134
128 135
129 } } // namespace v8::internal 136 } } // namespace v8::internal
130 137
131 namespace i = v8::internal; 138 namespace i = v8::internal;
132 139
133 #endif // V8_V8_H_ 140 #endif // V8_V8_H_
OLDNEW
« no previous file with comments | « src/default-platform.cc ('k') | src/v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698