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

Unified Diff: Source/modules/filesystem/FileWriter.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 | « Source/modules/filesystem/FileEntrySync.cpp ('k') | Source/modules/filesystem/InspectorFileSystemAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileWriter.h
diff --git a/Source/modules/filesystem/FileWriter.h b/Source/modules/filesystem/FileWriter.h
index 7306f8b78470a456f888cb22e9495e9476b44b76..cea0b69299135052d608e35b0ff38b44c74ee511 100644
--- a/Source/modules/filesystem/FileWriter.h
+++ b/Source/modules/filesystem/FileWriter.h
@@ -36,6 +36,7 @@
#include "core/dom/ExecutionContext.h"
#include "core/events/EventTarget.h"
#include "core/fileapi/FileError.h"
+#include "heap/Handle.h"
#include "modules/filesystem/FileWriterBase.h"
#include "public/platform/WebFileWriterClient.h"
#include "wtf/PassRefPtr.h"
@@ -106,7 +107,7 @@ private:
void setError(FileError::ErrorCode, ExceptionState&);
- RefPtr<FileError> m_error;
+ RefPtrWillBePersistent<FileError> m_error;
ReadyState m_readyState;
Operation m_operationInProgress;
Operation m_queuedOperation;
@@ -116,7 +117,7 @@ private:
long long m_numAborts;
long long m_recursionDepth;
double m_lastProgressNotificationTimeMS;
- RefPtr<Blob> m_blobBeingWritten;
+ RefPtrWillBePersistent<Blob> m_blobBeingWritten;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/filesystem/FileEntrySync.cpp ('k') | Source/modules/filesystem/InspectorFileSystemAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698