summaryrefslogtreecommitdiffstats
path: root/WebCore/platform
diff options
context:
space:
mode:
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; }