summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-20 07:21:07 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-20 07:21:07 +0000
commit81484d75873e69e14282c54c9d5d1a6dd0907dcd (patch)
tree04eaa02fb6b032471d31cd46b34d58e2af33816e /content
parent8813990fdba0923ef32ccac1431fb8a02898d8c0 (diff)
downloadchromium_src-81484d75873e69e14282c54c9d5d1a6dd0907dcd.zip
chromium_src-81484d75873e69e14282c54c9d5d1a6dd0907dcd.tar.gz
chromium_src-81484d75873e69e14282c54c9d5d1a6dd0907dcd.tar.bz2
Obsoleting --unlimited-quota-for-files
BUG=94360 TEST=existing tests should pass Review URL: http://codereview.chromium.org/7839027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101928 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/browser/file_system/browser_file_system_helper.cc2
-rw-r--r--content/common/content_switches.cc6
2 files changed, 0 insertions, 8 deletions
diff --git a/content/browser/file_system/browser_file_system_helper.cc b/content/browser/file_system/browser_file_system_helper.cc
index 5515ebc..a468590 100644
--- a/content/browser/file_system/browser_file_system_helper.cc
+++ b/content/browser/file_system/browser_file_system_helper.cc
@@ -23,7 +23,5 @@ scoped_refptr<fileapi::FileSystemContext> CreateFileSystemContext(
is_incognito,
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kAllowFileAccessFromFiles),
- CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kUnlimitedQuotaForFiles),
NULL);
}
diff --git a/content/common/content_switches.cc b/content/common/content_switches.cc
index 29864da..4b232a4 100644
--- a/content/common/content_switches.cc
+++ b/content/common/content_switches.cc
@@ -444,12 +444,6 @@ const char kSQLiteIndexedDatabase[] = "indexeddb-use-sqlite";
// Runs the security test for the renderer sandbox.
const char kTestSandbox[] = "test-sandbox";
-// Grant unlimited quota to store files to this process.
-// Used for testing Pepper's FileRef/FileIO/FileSystem implementations.
-// DO NOT USE FOR OTHER PURPOSES.
-// TODO(dumi): remove the switch when we have a real quota implementation.
-const char kUnlimitedQuotaForFiles[] = "unlimited-quota-for-files";
-
// A string used to override the default user agent with a custom one.
const char kUserAgent[] = "user-agent";