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

Unified Diff: Source/modules/filesystem/EntryBase.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/Entry.idl ('k') | Source/modules/filesystem/EntryBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/EntryBase.h
diff --git a/Source/modules/filesystem/EntryBase.h b/Source/modules/filesystem/EntryBase.h
index 76b39c710ad4e42221b14b5d99e9d5b7b14b0176..068ef5a64341f2f63b0f7043c15acb745943cc31 100644
--- a/Source/modules/filesystem/EntryBase.h
+++ b/Source/modules/filesystem/EntryBase.h
@@ -32,7 +32,6 @@
#define EntryBase_h
#include "platform/heap/Handle.h"
-#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
@@ -41,7 +40,7 @@ class DOMFileSystemBase;
class EntrySync;
// A common base class for Entry and EntrySync.
-class EntryBase : public RefCountedWillBeGarbageCollectedFinalized<EntryBase> {
+class EntryBase : public GarbageCollectedFinalized<EntryBase> {
public:
virtual ~EntryBase();
@@ -58,10 +57,10 @@ public:
virtual void trace(Visitor*);
protected:
- EntryBase(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& fullPath);
+ EntryBase(DOMFileSystemBase*, const String& fullPath);
friend class EntrySync;
- RefPtrWillBeMember<DOMFileSystemBase> m_fileSystem;
+ Member<DOMFileSystemBase> m_fileSystem;
// This is a virtual path.
const String m_fullPath;
« no previous file with comments | « Source/modules/filesystem/Entry.idl ('k') | Source/modules/filesystem/EntryBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698