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

Side by Side Diff: src/v8.h

Issue 76323002: Revert 17877 - Introduce a v8::Platform class that bundles embedder callbacks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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"
54 #include "v8globals.h" 53 #include "v8globals.h"
55 #include "v8checks.h" 54 #include "v8checks.h"
56 #include "allocation.h" 55 #include "allocation.h"
57 #include "assert-scope.h" 56 #include "assert-scope.h"
58 #include "v8utils.h" 57 #include "v8utils.h"
59 #include "flags.h" 58 #include "flags.h"
60 59
61 // Objects & heap 60 // Objects & heap
62 #include "objects-inl.h" 61 #include "objects-inl.h"
63 #include "spaces-inl.h" 62 #include "spaces-inl.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 104
106 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() { 105 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() {
107 return array_buffer_allocator_; 106 return array_buffer_allocator_;
108 } 107 }
109 108
110 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) { 109 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) {
111 CHECK_EQ(NULL, array_buffer_allocator_); 110 CHECK_EQ(NULL, array_buffer_allocator_);
112 array_buffer_allocator_ = allocator; 111 array_buffer_allocator_ = allocator;
113 } 112 }
114 113
115 static void InitializePlatform(v8::Platform* platform);
116 static void ShutdownPlatform();
117 static v8::Platform* GetCurrentPlatform();
118
119 private: 114 private:
120 static void InitializeOncePerProcessImpl(); 115 static void InitializeOncePerProcessImpl();
121 static void InitializeOncePerProcess(); 116 static void InitializeOncePerProcess();
122 117
123 // List of callbacks when a Call completes. 118 // List of callbacks when a Call completes.
124 static List<CallCompletedCallback>* call_completed_callbacks_; 119 static List<CallCompletedCallback>* call_completed_callbacks_;
125 // Allocator for external array buffers. 120 // Allocator for external array buffers.
126 static v8::ArrayBuffer::Allocator* array_buffer_allocator_; 121 static v8::ArrayBuffer::Allocator* array_buffer_allocator_;
127 // v8::Platform to use.
128 static v8::Platform* platform_;
129 }; 122 };
130 123
131 124
132 // JavaScript defines two kinds of 'nil'. 125 // JavaScript defines two kinds of 'nil'.
133 enum NilValue { kNullValue, kUndefinedValue }; 126 enum NilValue { kNullValue, kUndefinedValue };
134 127
135 128
136 } } // namespace v8::internal 129 } } // namespace v8::internal
137 130
138 namespace i = v8::internal; 131 namespace i = v8::internal;
139 132
140 #endif // V8_V8_H_ 133 #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