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

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

Issue 614373007: Oilpan: Remove adoptRefCountedGarbageCollected (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 6f63b85cf9e326f07e7582945f77933053842998..7a9289b2b582201ecb9f3f2942324308e3cfcdbc 100644
--- a/Source/modules/filesystem/FileWriterSync.h
+++ b/Source/modules/filesystem/FileWriterSync.h
@@ -47,7 +47,7 @@ class FileWriterSync FINAL : public FileWriterBase, public ScriptWrappable, publ
public:
static FileWriterSync* create()
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new FileWriterSync());
+ return new FileWriterSync();
}
virtual ~FileWriterSync();

Powered by Google App Engine
This is Rietveld 408576698