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

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: 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
Index: public/web/WebBlob.h
diff --git a/public/web/WebBlob.h b/public/web/WebBlob.h
index 07d39844f80e8d75cd1818fc385397b6bd03a1fd..5088bb185054d95134ee0bbed14700830f81abf4 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 INSIDE_BLINK
+#include "heap/Handle.h"
+#endif
+
namespace v8 {
class Value;
template <class T> class Handle;
@@ -70,9 +74,9 @@ 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>&);
+ operator PassRefPtrWillBeRawPtr<WebCore::Blob>() const;
haraken 2014/02/24 13:49:14 Shall we remove the implicit conversion and instea
sof 2014/02/24 17:09:09 It isn't used, so I dropped it instead.
#endif
protected:

Powered by Google App Engine
This is Rietveld 408576698