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

Unified Diff: Source/modules/filesystem/InspectorFileSystemAgent.cpp

Issue 314333002: Enable Oilpan by default in modules/filesystem/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove consts from conversion ctor + copy assignment op Created 6 years, 6 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: Source/modules/filesystem/InspectorFileSystemAgent.cpp
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
index 4ee0ceea9ec3f01ed7217a4d2850118a74e13f54..888beb90e8e83820edd008d34fcbd7ff01c873fa 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
@@ -216,7 +216,7 @@ private:
RefPtr<RequestDirectoryContentCallback> m_requestCallback;
KURL m_url;
RefPtr<Array<TypeBuilder::FileSystem::Entry> > m_entries;
- RefPtrWillBePersistent<DirectoryReader> m_directoryReader;
+ Persistent<DirectoryReader> m_directoryReader;
};
void DirectoryContentRequest::start(ExecutionContext* executionContext)
@@ -264,7 +264,7 @@ bool DirectoryContentRequest::didReadDirectoryEntries(const EntryHeapVector& ent
}
for (size_t i = 0; i < entries.size(); ++i) {
- RefPtrWillBeRawPtr<Entry> entry = entries[i];
+ Entry* entry = entries[i];
RefPtr<TypeBuilder::FileSystem::Entry> entryForFrontend = TypeBuilder::FileSystem::Entry::create()
.setUrl(entry->toURL())
.setName(entry->name())
« no previous file with comments | « Source/modules/filesystem/HTMLInputElementFileSystem.cpp ('k') | Source/modules/filesystem/InspectorFrontendHostFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698