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

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

Issue 314333002: Enable Oilpan by default in modules/filesystem/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tidy up 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/FileWriterSync.h
diff --git a/Source/modules/filesystem/FileWriterSync.h b/Source/modules/filesystem/FileWriterSync.h
index 2a359713f272c998042abd7de1005bcf36011cb3..f3a63cf2069e0e745dc31a354cb6c5ccf3f75e71 100644
--- a/Source/modules/filesystem/FileWriterSync.h
+++ b/Source/modules/filesystem/FileWriterSync.h
@@ -46,7 +46,7 @@ class FileWriterSync FINAL : public FileWriterBase, public ScriptWrappable, publ
public:
static PassRefPtrWillBeRawPtr<FileWriterSync> create()
haraken 2014/06/07 08:11:04 Ditto. FileWriterSync*. Let's manually grep RefPt
sof 2014/06/07 13:18:53 That will work as it is not EventTarget-derived. D
{
- return adoptRefWillBeRefCountedGarbageCollected(new FileWriterSync());
+ return adoptRefCountedGarbageCollected(new FileWriterSync());
}
virtual ~FileWriterSync();

Powered by Google App Engine
This is Rietveld 408576698