summaryrefslogtreecommitdiffstats
path: root/WebCore/platform
diff options
context:
space:
mode:
authorAndrei Popescu <andreip@google.com>2009-07-23 19:18:55 +0100
committerAndrei Popescu <andreip@google.com>2009-07-23 19:23:41 +0100
commit0516e5ebbe0e0ced8bd40f67f06c38a4d373be9c (patch)
tree9f24ad053e4079dff5055b5f190dfe58cedbc43e /WebCore/platform
parente9847f9d84b7c04a739e1741c7d59a63a80e782e (diff)
downloadexternal_webkit-0516e5ebbe0e0ced8bd40f67f06c38a4d373be9c.zip
external_webkit-0516e5ebbe0e0ced8bd40f67f06c38a4d373be9c.tar.gz
external_webkit-0516e5ebbe0e0ced8bd40f67f06c38a4d373be9c.tar.bz2
Update V8 to bleeding_edge@2524
Diffstat (limited to 'WebCore/platform')
-rw-r--r--WebCore/platform/SharedBuffer.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/WebCore/platform/SharedBuffer.h b/WebCore/platform/SharedBuffer.h
index 3404a0c..cd918d6 100644
--- a/WebCore/platform/SharedBuffer.h
+++ b/WebCore/platform/SharedBuffer.h
@@ -61,7 +61,10 @@ public:
// The buffer must be in non-purgeable state before adopted to a SharedBuffer.
// It will stay that way until released.
static PassRefPtr<SharedBuffer> adoptPurgeableBuffer(PurgeableBuffer* buffer);
-
+
+#if PLATFORM(ANDROID)
+ virtual
+#endif
~SharedBuffer();
#if PLATFORM(MAC)
@@ -73,7 +76,13 @@ public:
static PassRefPtr<SharedBuffer> wrapCFData(CFDataRef);
#endif
+#if PLATFORM(ANDROID)
+ virtual
+#endif
const char* data() const;
+#if PLATFORM(ANDROID)
+ virtual
+#endif
unsigned size() const;
const Vector<char> &buffer() { return m_buffer; }