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

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

Issue 1315743003: [part 1] Make classes and structures in modules/ fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/DOMFilePath.h ('k') | Source/modules/filesystem/DOMWindowFileSystem.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMWindowFileSystem.h
diff --git a/Source/modules/filesystem/DOMWindowFileSystem.h b/Source/modules/filesystem/DOMWindowFileSystem.h
index 98a42e865e7065c20a06beace3981a047798328d..cd8c85d736a6888ad05b05139328886690878d58 100644
--- a/Source/modules/filesystem/DOMWindowFileSystem.h
+++ b/Source/modules/filesystem/DOMWindowFileSystem.h
@@ -27,6 +27,7 @@
#define DOMWindowFileSystem_h
#include "platform/heap/Handle.h"
+#include "wtf/Allocator.h"
#include "wtf/text/WTFString.h"
namespace blink {
@@ -37,6 +38,7 @@ class ErrorCallback;
class FileSystemCallback;
class DOMWindowFileSystem {
+ STATIC_ONLY(DOMWindowFileSystem);
public:
static void webkitRequestFileSystem(DOMWindow&, int type, long long size, FileSystemCallback*, ErrorCallback*);
static void webkitResolveLocalFileSystemURL(DOMWindow&, const String&, EntryCallback*, ErrorCallback*);
@@ -47,10 +49,6 @@ public:
TEMPORARY,
PERSISTENT,
};
-
-private:
- DOMWindowFileSystem();
- ~DOMWindowFileSystem();
};
} // namespace blink
« no previous file with comments | « Source/modules/filesystem/DOMFilePath.h ('k') | Source/modules/filesystem/DOMWindowFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698