From f0ea13846d9023abb1702b34461954d96202e20f Mon Sep 17 00:00:00 2001 From: "jkummerow@chromium.org" Date: Fri, 13 Apr 2012 10:57:17 +0000 Subject: [PATCH] Provide empty default implementation of OutputStream::WriteUint32Chunk to make Webkit V8 bindings compile Review URL: https://chromiumcodereview.appspot.com/10084001 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11311 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/v8.h b/include/v8.h index f26d24b..0f05230 100644 --- a/include/v8.h +++ b/include/v8.h @@ -3772,7 +3772,11 @@ 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) { + return kAbort; + }; }; -- 2.7.4