Chromium Code Reviews

Unified Diff: Source/modules/filesystem/WorkerGlobalScopeFileSystem.h

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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
diff --git a/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h b/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
index 869608f15edeae2e5d02c690de104c074c620c64..a2fa8deced071b6d3756a4f521a44dea2578d294 100644
--- a/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
+++ b/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
@@ -47,9 +47,9 @@ public:
};
static void webkitRequestFileSystem(WorkerGlobalScope&, int type, long long size, PassOwnPtr<FileSystemCallback> successCallback, PassOwnPtr<ErrorCallback>);
- static PassRefPtrWillBeRawPtr<DOMFileSystemSync> webkitRequestFileSystemSync(WorkerGlobalScope&, int type, long long size, ExceptionState&);
+ static DOMFileSystemSync* webkitRequestFileSystemSync(WorkerGlobalScope&, int type, long long size, ExceptionState&);
static void webkitResolveLocalFileSystemURL(WorkerGlobalScope&, const String& url, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback>);
- static PassRefPtrWillBeRawPtr<EntrySync> webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope&, const String& url, ExceptionState&);
+ static EntrySync* webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope&, const String& url, ExceptionState&);
private:
WorkerGlobalScopeFileSystem();
« no previous file with comments | « Source/modules/filesystem/SyncCallbackHelper.h ('k') | Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine