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

Side by Side Diff: src/d8.h

Issue 9227007: Version 3.8.6 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 11 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/cpu-profiler.cc ('k') | src/d8.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 2012 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
11 // with the distribution. 11 // with the distribution.
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 static Handle<Value> Print(const Arguments& args); 282 static Handle<Value> Print(const Arguments& args);
283 static Handle<Value> Write(const Arguments& args); 283 static Handle<Value> Write(const Arguments& args);
284 static Handle<Value> Yield(const Arguments& args); 284 static Handle<Value> Yield(const Arguments& args);
285 static Handle<Value> Quit(const Arguments& args); 285 static Handle<Value> Quit(const Arguments& args);
286 static Handle<Value> Version(const Arguments& args); 286 static Handle<Value> Version(const Arguments& args);
287 static Handle<Value> EnableProfiler(const Arguments& args); 287 static Handle<Value> EnableProfiler(const Arguments& args);
288 static Handle<Value> DisableProfiler(const Arguments& args); 288 static Handle<Value> DisableProfiler(const Arguments& args);
289 static Handle<Value> Read(const Arguments& args); 289 static Handle<Value> Read(const Arguments& args);
290 static Handle<Value> ReadLine(const Arguments& args); 290 static Handle<Value> ReadLine(const Arguments& args);
291 static Handle<Value> Load(const Arguments& args); 291 static Handle<Value> Load(const Arguments& args);
292 static Handle<Value> ArrayBuffer(const Arguments& args);
292 static Handle<Value> Int8Array(const Arguments& args); 293 static Handle<Value> Int8Array(const Arguments& args);
293 static Handle<Value> Uint8Array(const Arguments& args); 294 static Handle<Value> Uint8Array(const Arguments& args);
294 static Handle<Value> Int16Array(const Arguments& args); 295 static Handle<Value> Int16Array(const Arguments& args);
295 static Handle<Value> Uint16Array(const Arguments& args); 296 static Handle<Value> Uint16Array(const Arguments& args);
296 static Handle<Value> Int32Array(const Arguments& args); 297 static Handle<Value> Int32Array(const Arguments& args);
297 static Handle<Value> Uint32Array(const Arguments& args); 298 static Handle<Value> Uint32Array(const Arguments& args);
298 static Handle<Value> Float32Array(const Arguments& args); 299 static Handle<Value> Float32Array(const Arguments& args);
299 static Handle<Value> Float64Array(const Arguments& args); 300 static Handle<Value> Float64Array(const Arguments& args);
300 static Handle<Value> PixelArray(const Arguments& args); 301 static Handle<Value> PixelArray(const Arguments& args);
301 // The OS object on the global object contains methods for performing 302 // The OS object on the global object contains methods for performing
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 ExternalArrayType type, 366 ExternalArrayType type,
366 size_t element_size); 367 size_t element_size);
367 static void ExternalArrayWeakCallback(Persistent<Value> object, void* data); 368 static void ExternalArrayWeakCallback(Persistent<Value> object, void* data);
368 }; 369 };
369 370
370 371
371 } // namespace v8 372 } // namespace v8
372 373
373 374
374 #endif // V8_D8_H_ 375 #endif // V8_D8_H_
OLDNEW
« no previous file with comments | « src/cpu-profiler.cc ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698