diff options
author | mdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-21 21:04:28 +0000 |
---|---|---|
committer | mdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-21 21:04:28 +0000 |
commit | 803e4c8a8db64fa1a404c2b347ba459f6535f914 (patch) | |
tree | 1b4f27743951f4bef8d22fcae4a6b606497ed291 /chrome/browser | |
parent | 080f6535122974b04541597579f43f35f092d7a1 (diff) | |
download | chromium_src-803e4c8a8db64fa1a404c2b347ba459f6535f914.zip chromium_src-803e4c8a8db64fa1a404c2b347ba459f6535f914.tar.gz chromium_src-803e4c8a8db64fa1a404c2b347ba459f6535f914.tar.bz2 |
Fix a spelling mistake in a comment.
Review URL: http://codereview.chromium.org/7217019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89891 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/ui/browser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc index e332495..af0ffa1 100644 --- a/chrome/browser/ui/browser.cc +++ b/chrome/browser/ui/browser.cc @@ -4363,7 +4363,7 @@ void Browser::CheckDownloadsInProgress(bool* normal_downloads_are_present, // If there are no download in-progress, our job is done. DownloadManager* download_manager = NULL; - // But first we need to check for the existance of the download manager, as + // But first we need to check for the existence of the download manager, as // GetDownloadManager() will unnecessarily try to create one if it does not // exist. if (profile()->HasCreatedDownloadManager()) @@ -4395,7 +4395,7 @@ bool Browser::CanCloseWithInProgressDownloads() { bool normal_downloads_are_present = false; bool incognito_downloads_are_present = false; CheckDownloadsInProgress(&normal_downloads_are_present, - &incognito_downloads_are_present); + &incognito_downloads_are_present); if (!normal_downloads_are_present && !incognito_downloads_are_present) return true; |