diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-14 21:07:00 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-14 21:07:00 +0000 |
commit | 2d367ca982350af5041c5daa905f781b23a46209 (patch) | |
tree | e04692155b0a03b376a159ce76bb45c550710b2e /chrome/browser/diagnostics | |
parent | 07e602f3c3e5c2b6167cfb073ddc4de13a10f9b3 (diff) | |
download | chromium_src-2d367ca982350af5041c5daa905f781b23a46209.zip chromium_src-2d367ca982350af5041c5daa905f781b23a46209.tar.gz chromium_src-2d367ca982350af5041c5daa905f781b23a46209.tar.bz2 |
Upping the diagnostic mode limits for file size
- The local state and the overall size of the profile dir
BUG=42561
Review URL: http://codereview.chromium.org/2934019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52400 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/diagnostics')
-rw-r--r-- | chrome/browser/diagnostics/recon_diagnostics.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/diagnostics/recon_diagnostics.cc b/chrome/browser/diagnostics/recon_diagnostics.cc index 0faef4b..77a5b8c 100644 --- a/chrome/browser/diagnostics/recon_diagnostics.cc +++ b/chrome/browser/diagnostics/recon_diagnostics.cc @@ -155,9 +155,9 @@ const int64 kOneMeg = 1024 * kOneKilo; const TestPathInfo kPathsToTest[] = { {"User data Directory", chrome::DIR_USER_DATA, - true, false, true, 250 * kOneMeg}, + true, false, true, 850 * kOneMeg}, {"Local state file", chrome::FILE_LOCAL_STATE, - false, false, true, 100 * kOneKilo}, + false, false, true, 500 * kOneKilo}, {"Dictionaries Directory", chrome::DIR_APP_DICTIONARIES, true, true, false, 0}, {"Inspector Directory", chrome::DIR_INSPECTOR, |