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

Unified Diff: public/web/WebDOMFileSystem.h

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 9 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 | « Source/web/WebDOMFileSystem.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDOMFileSystem.h
diff --git a/public/web/WebDOMFileSystem.h b/public/web/WebDOMFileSystem.h
index 1f4b7847bfd66ac993a1a4bf6621850e1e5636ca..5279cc07c3b5206f6dd338cea6eb510c6352a411 100644
--- a/public/web/WebDOMFileSystem.h
+++ b/public/web/WebDOMFileSystem.h
@@ -36,6 +36,10 @@
#include "../platform/WebString.h"
#include "../platform/WebURL.h"
+#if BLINK_IMPLEMENTATION
+#include "heap/Handle.h"
+#endif
+
namespace v8 {
class Value;
template <class T> class Handle;
@@ -94,9 +98,8 @@ public:
bool isNull() const { return m_private.isNull(); }
#if BLINK_IMPLEMENTATION
- WebDOMFileSystem(const WTF::PassRefPtr<WebCore::DOMFileSystem>&);
- WebDOMFileSystem& operator=(const WTF::PassRefPtr<WebCore::DOMFileSystem>&);
- operator WTF::PassRefPtr<WebCore::DOMFileSystem>() const;
+ WebDOMFileSystem(const PassRefPtrWillBeRawPtr<WebCore::DOMFileSystem>&);
+ WebDOMFileSystem& operator=(const PassRefPtrWillBeRawPtr<WebCore::DOMFileSystem>&);
#endif
private:
« no previous file with comments | « Source/web/WebDOMFileSystem.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698