Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: public/web/WebBlob.h

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/platform/WebIDBDatabaseError.h ('k') | public/web/WebDOMError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebBlob.h
diff --git a/public/web/WebBlob.h b/public/web/WebBlob.h
index 07d39844f80e8d75cd1818fc385397b6bd03a1fd..7b9c64b04be8acc03657c51ca197f6aac374ddf1 100644
--- a/public/web/WebBlob.h
+++ b/public/web/WebBlob.h
@@ -37,6 +37,10 @@
#include "public/platform/WebString.h"
#include "public/platform/WebURL.h"
+#if BLINK_IMPLEMENTATION
+#include "heap/Handle.h"
+#endif
+
namespace v8 {
class Value;
template <class T> class Handle;
@@ -70,9 +74,8 @@ public:
BLINK_EXPORT v8::Handle<v8::Value> toV8Value();
#if BLINK_IMPLEMENTATION
- WebBlob(const WTF::PassRefPtr<WebCore::Blob>&);
- WebBlob& operator=(const WTF::PassRefPtr<WebCore::Blob>&);
- operator WTF::PassRefPtr<WebCore::Blob>() const;
+ explicit WebBlob(const PassRefPtrWillBeRawPtr<WebCore::Blob>&);
+ WebBlob& operator=(const PassRefPtrWillBeRawPtr<WebCore::Blob>&);
#endif
protected:
« no previous file with comments | « public/platform/WebIDBDatabaseError.h ('k') | public/web/WebDOMError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698