Revision: 11311
Author:   [email protected]
Date:     Fri Apr 13 03:57:17 2012
Log: Provide empty default implementation of OutputStream::WriteUint32Chunk to make Webkit V8 bindings compile

Review URL: https://chromiumcodereview.appspot.com/10084001
http://code.google.com/p/v8/source/detail?r=11311

Modified:
 /branches/bleeding_edge/include/v8.h

=======================================
--- /branches/bleeding_edge/include/v8.h        Fri Apr 13 02:58:29 2012
+++ /branches/bleeding_edge/include/v8.h        Fri Apr 13 03:57:17 2012
@@ -3772,7 +3772,11 @@
    * can be stopped by returning kAbort as function result. EndOfStream
    * will not be called in case writing was aborted.
    */
-  virtual WriteResult WriteUint32Chunk(uint32_t* data, int count) = 0;
+  // TODO(loislo): Make this pure virtual when WebKit's V8 bindings
+  // have been updated.
+  virtual WriteResult WriteUint32Chunk(uint32_t* data, int count) {
+    return kAbort;
+  };
 };


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to