Reviewers: Michael Starzinger,

Message:
PTAQL.

Description:
Provide empty default implementation of OutputStream::WriteUint32Chunk to make
Webkit V8 bindings compile


Please review this at https://chromiumcodereview.appspot.com/10084001/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M include/v8.h


Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index f26d24b86a6261438999d46ce6714d456760c55e..bb79e3064685c54c6d5408229d31ee3f2a3d644e 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -3772,7 +3772,9 @@ class V8EXPORT OutputStream {  // NOLINT
    * 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) {};
 };




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

Reply via email to