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

Unified Diff: Source/modules/filesystem/DOMFileSystemSync.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. 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/DOMFileSystemBase.cpp ('k') | Source/modules/filesystem/DOMFileSystemSync.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMFileSystemSync.h
diff --git a/Source/modules/filesystem/DOMFileSystemSync.h b/Source/modules/filesystem/DOMFileSystemSync.h
index 23f32633d575294e60a6a928efd3d95d9a4faeaa..4507279e0587c5da4742f325ea18f010baed9928 100644
--- a/Source/modules/filesystem/DOMFileSystemSync.h
+++ b/Source/modules/filesystem/DOMFileSystemSync.h
@@ -45,21 +45,21 @@ class ExceptionState;
class DOMFileSystemSync FINAL : public DOMFileSystemBase, public ScriptWrappable {
public:
- static PassRefPtrWillBeRawPtr<DOMFileSystemSync> create(ExecutionContext* context, const String& name, FileSystemType type, const KURL& rootURL)
+ static DOMFileSystemSync* create(ExecutionContext* context, const String& name, FileSystemType type, const KURL& rootURL)
{
- return adoptRefWillBeRefCountedGarbageCollected(new DOMFileSystemSync(context, name, type, rootURL));
+ return new DOMFileSystemSync(context, name, type, rootURL);
}
- static PassRefPtrWillBeRawPtr<DOMFileSystemSync> create(DOMFileSystemBase*);
+ static DOMFileSystemSync* create(DOMFileSystemBase*);
virtual ~DOMFileSystemSync();
virtual void reportError(PassOwnPtr<ErrorCallback>, PassRefPtrWillBeRawPtr<FileError>) OVERRIDE;
- PassRefPtrWillBeRawPtr<DirectoryEntrySync> root();
+ DirectoryEntrySync* root();
PassRefPtrWillBeRawPtr<File> createFile(const FileEntrySync*, ExceptionState&);
- PassRefPtrWillBeRawPtr<FileWriterSync> createWriter(const FileEntrySync*, ExceptionState&);
+ FileWriterSync* createWriter(const FileEntrySync*, ExceptionState&);
private:
DOMFileSystemSync(ExecutionContext*, const String& name, FileSystemType, const KURL& rootURL);
« no previous file with comments | « Source/modules/filesystem/DOMFileSystemBase.cpp ('k') | Source/modules/filesystem/DOMFileSystemSync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698