summaryrefslogtreecommitdiffstats
path: root/webkit/support
diff options
context:
space:
mode:
authorpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-20 18:36:48 +0000
committerpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-20 18:36:48 +0000
commitbc31407e8c44a801037d19e5c852bf42c7a85c95 (patch)
tree09c41f2937956a35de0f1f8893d6ab7e15a718b3 /webkit/support
parent433bd24b73e676a6aae5b04f00131755cce3552b (diff)
downloadchromium_src-bc31407e8c44a801037d19e5c852bf42c7a85c95.zip
chromium_src-bc31407e8c44a801037d19e5c852bf42c7a85c95.tar.gz
chromium_src-bc31407e8c44a801037d19e5c852bf42c7a85c95.tar.bz2
Remove dead code behind ifndef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
Review URL: https://chromiumcodereview.appspot.com/12879013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189350 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support')
-rw-r--r--webkit/support/webkit_support.cc8
-rw-r--r--webkit/support/webkit_support.h8
2 files changed, 0 insertions, 16 deletions
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index 23a81d7..1ffa2d5 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -875,11 +875,7 @@ WebURL GetDevToolsPathAsURL() {
// FileSystem
void OpenFileSystem(WebFrame* frame,
-#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
WebKit::WebFileSystemType type,
-#else
- WebFileSystem::Type type,
-#endif
long long size, bool create, WebFileSystemCallbacks* callbacks) {
SimpleFileSystem* fileSystem = static_cast<SimpleFileSystem*>(
test_environment->webkit_platform_support()->fileSystem());
@@ -887,11 +883,7 @@ void OpenFileSystem(WebFrame* frame,
}
void DeleteFileSystem(WebFrame* frame,
-#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
WebKit::WebFileSystemType type,
-#else
- WebFileSystem::Type type,
-#endif
WebFileSystemCallbacks* callbacks) {
SimpleFileSystem* fileSystem = static_cast<SimpleFileSystem*>(
test_environment->webkit_platform_support()->fileSystem());
diff --git a/webkit/support/webkit_support.h b/webkit/support/webkit_support.h
index fe6ce09..362850b 100644
--- a/webkit/support/webkit_support.h
+++ b/webkit/support/webkit_support.h
@@ -270,20 +270,12 @@ WebKit::WebURL GetDevToolsPathAsURL();
// - FileSystem
void OpenFileSystem(WebKit::WebFrame* frame,
-#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
WebKit::WebFileSystemType type,
-#else
- WebKit::WebFileSystem::Type type,
-#endif
long long size,
bool create,
WebKit::WebFileSystemCallbacks* callbacks);
void DeleteFileSystem(WebKit::WebFrame* frame,
-#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
WebKit::WebFileSystemType type,
-#else
- WebKit::WebFileSystem::Type type,
-#endif
WebKit::WebFileSystemCallbacks* callbacks);
// Returns a filesystem ID for the newly created isolated filesystem.