HomeSort by relevance Sort by last modified time
    Searched defs:blobDataHandle (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.h 50 return adoptRef(new Blob(BlobDataHandle::create()));
53 static PassRefPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle)
55 return adoptRef(new Blob(blobDataHandle));
67 PassRefPtr<BlobDataHandle> blobDataHandle() const { return m_blobDataHandle; }
74 explicit Blob(PassRefPtr<BlobDataHandle>);
78 RefPtr<BlobDataHandle> m_blobDataHandle;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.h 84 virtual WebSocketChannel::SendResult send(PassRefPtr<BlobDataHandle>) OVERRIDE;
108 explicit Message(PassRefPtr<BlobDataHandle>);
112 RefPtr<BlobDataHandle> blobDataHandle;
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobData.h 43 class BlobDataHandle;
107 BlobDataItem(PassRefPtr<BlobDataHandle> blobDataHandle, long long offset, long long length)
109 , blobDataHandle(blobDataHandle)
139 RefPtr<BlobDataHandle> blobDataHandle; // For Blob type.
181 void appendBlob(PassRefPtr<BlobDataHandle>, long long offset, long long length);
199 class PLATFORM_EXPORT BlobDataHandle : public ThreadSafeRefCounted<BlobDataHandle> {
    [all...]

Completed in 43 milliseconds