diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 07:21:07 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 07:21:07 +0000 |
commit | 81484d75873e69e14282c54c9d5d1a6dd0907dcd (patch) | |
tree | 04eaa02fb6b032471d31cd46b34d58e2af33816e /content | |
parent | 8813990fdba0923ef32ccac1431fb8a02898d8c0 (diff) | |
download | chromium_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.cc | 2 | ||||
-rw-r--r-- | content/common/content_switches.cc | 6 |
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"; |