Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: chrome/browser/ui/browser.cc

Issue 7466033: Fix warning prompting on closing a window that will cancel downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Parallel view cleanup to gtk. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_close_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/browser.h" 5 #include "chrome/browser/ui/browser.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #include <shellapi.h> 9 #include <shellapi.h>
10 #endif // OS_WIN 10 #endif // OS_WIN
11 11
12 #include <algorithm> 12 #include <algorithm>
13 #include <string> 13 #include <string>
14 14
15 #include "base/base_paths.h" 15 #include "base/base_paths.h"
16 #include "base/command_line.h" 16 #include "base/command_line.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/metrics/histogram.h" 18 #include "base/metrics/histogram.h"
19 #include "base/path_service.h" 19 #include "base/path_service.h"
20 #include "base/string_number_conversions.h"
20 #include "base/string_util.h" 21 #include "base/string_util.h"
21 #include "base/string_number_conversions.h"
22 #include "base/threading/thread.h" 22 #include "base/threading/thread.h"
23 #include "base/threading/thread_restrictions.h" 23 #include "base/threading/thread_restrictions.h"
24 #include "base/time.h" 24 #include "base/time.h"
25 #include "base/utf_string_conversions.h" 25 #include "base/utf_string_conversions.h"
26 #include "chrome/app/chrome_command_ids.h" 26 #include "chrome/app/chrome_command_ids.h"
27 #include "chrome/browser/autofill/autofill_manager.h" 27 #include "chrome/browser/autofill/autofill_manager.h"
28 #include "chrome/browser/background/background_contents_service.h" 28 #include "chrome/browser/background/background_contents_service.h"
29 #include "chrome/browser/bookmarks/bookmark_model.h" 29 #include "chrome/browser/bookmarks/bookmark_model.h"
30 #include "chrome/browser/bookmarks/bookmark_utils.h" 30 #include "chrome/browser/bookmarks/bookmark_utils.h"
31 #include "chrome/browser/browser_process.h" 31 #include "chrome/browser/browser_process.h"
(...skipping 19 matching lines...) Expand all
51 #include "chrome/browser/google/google_util.h" 51 #include "chrome/browser/google/google_util.h"
52 #include "chrome/browser/instant/instant_controller.h" 52 #include "chrome/browser/instant/instant_controller.h"
53 #include "chrome/browser/instant/instant_unload_handler.h" 53 #include "chrome/browser/instant/instant_unload_handler.h"
54 #include "chrome/browser/net/browser_url_util.h" 54 #include "chrome/browser/net/browser_url_util.h"
55 #include "chrome/browser/net/url_fixer_upper.h" 55 #include "chrome/browser/net/url_fixer_upper.h"
56 #include "chrome/browser/notifications/notification_ui_manager.h" 56 #include "chrome/browser/notifications/notification_ui_manager.h"
57 #include "chrome/browser/platform_util.h" 57 #include "chrome/browser/platform_util.h"
58 #include "chrome/browser/prefs/pref_service.h" 58 #include "chrome/browser/prefs/pref_service.h"
59 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h" 59 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h"
60 #include "chrome/browser/profiles/profile.h" 60 #include "chrome/browser/profiles/profile.h"
61 #include "chrome/browser/profiles/profile_manager.h"
61 #include "chrome/browser/sessions/restore_tab_helper.h" 62 #include "chrome/browser/sessions/restore_tab_helper.h"
62 #include "chrome/browser/sessions/session_service.h" 63 #include "chrome/browser/sessions/session_service.h"
63 #include "chrome/browser/sessions/session_service_factory.h" 64 #include "chrome/browser/sessions/session_service_factory.h"
64 #include "chrome/browser/sessions/session_types.h" 65 #include "chrome/browser/sessions/session_types.h"
65 #include "chrome/browser/sessions/tab_restore_service.h" 66 #include "chrome/browser/sessions/tab_restore_service.h"
66 #include "chrome/browser/sessions/tab_restore_service_factory.h" 67 #include "chrome/browser/sessions/tab_restore_service_factory.h"
67 #include "chrome/browser/sync/profile_sync_service.h" 68 #include "chrome/browser/sync/profile_sync_service.h"
68 #include "chrome/browser/sync/sync_ui_util.h" 69 #include "chrome/browser/sync/sync_ui_util.h"
69 #include "chrome/browser/tab_closeable_state_watcher.h" 70 #include "chrome/browser/tab_closeable_state_watcher.h"
70 #include "chrome/browser/tab_contents/background_contents.h" 71 #include "chrome/browser/tab_contents/background_contents.h"
(...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 1036
1036 // Sets the confirmation state to NOT_PROMPTED so that if the user tries to 1037 // Sets the confirmation state to NOT_PROMPTED so that if the user tries to
1037 // close again we'll show the warning again. 1038 // close again we'll show the warning again.
1038 cancel_download_confirmation_state_ = NOT_PROMPTED; 1039 cancel_download_confirmation_state_ = NOT_PROMPTED;
1039 1040
1040 // Show the download page so the user can figure-out what downloads are still 1041 // Show the download page so the user can figure-out what downloads are still
1041 // in-progress. 1042 // in-progress.
1042 ShowDownloadsTab(); 1043 ShowDownloadsTab();
1043 } 1044 }
1044 1045
1046 Browser::DownloadClosePreventionType Browser::OkToCloseWithInProgressDownloads(
1047 int* num_downloads_blocking) const {
1048 DCHECK(num_downloads_blocking);
1049
1050 if (is_attempting_to_close_browser_)
1051 return DOWNLOAD_CLOSE_OK;
1052
1053 int total_download_count =
1054 g_browser_process->profile_manager()->TotalDownloadCount();
1055 if (total_download_count == 0)
1056 return DOWNLOAD_CLOSE_OK; // No downloads; can definitely close.
1057
1058 // Let's figure out if we are the last tabbed window for our profile, and
1059 // the last window period.
1060 // Note that we cannot just use BrowserList::GetBrowserCount as browser
1061 // windows closing is delayed and the returned count might include windows
1062 // that are being closed.
1063 // The browser allowed to be closed only if:
1064 // 1. It is a regular browser and there are no regular downloads present or
1065 // this is not the last regular browser window.
1066 // 2. It is an incognito browser and there are no incognito downloads present
1067 // for this incognito profile or this is not the last incognito
1068 // browser window.
1069 // Note the lack of parallelism: regular profiles are kept around until
1070 // browser close, whereas incognito profiles are destroyed on last
1071 // associated window close.
1072 int profile_window_count = 0;
1073 int total_window_count = 0;
1074 for (BrowserList::const_iterator iter = BrowserList::begin();
1075 iter != BrowserList::end(); ++iter) {
1076 // Don't count this browser window or any other in the process of closing.
1077 // Only consider tabbed browser windows, not popups.
jennb 2011/07/22 21:02:40 Comments need updating. 1058-1071 might also need
Randy Smith (Not in Mondays) 2011/07/22 21:12:47 Whoops; done.
1078 Browser* const browser = *iter;
1079 if (browser == this ||
1080 browser->is_attempting_to_close_browser_)
1081 continue;
1082
1083 if ((*iter)->profile() == profile())
1084 profile_window_count++;
1085 total_window_count++;
1086 }
1087
1088 // If there aren't any other windows, we're at browser shutdown.
1089 if (total_window_count == 0) {
1090 *num_downloads_blocking = total_download_count;
1091 return DOWNLOAD_CLOSE_BROWSER_SHUTDOWN;
1092 }
1093
1094 // If there aren't any other windows on our profile, we're an incognito
1095 // profile, and there are downloads associated with that profile,
1096 // indicate that.
1097 if (profile_window_count == 0 && profile()->DownloadCount() > 0 &&
1098 profile()->IsOffTheRecord()) {
1099 *num_downloads_blocking = profile()->DownloadCount();
1100 return DOWNLOAD_CLOSE_LAST_WINDOW_IN_INCOGNITO_PROFILE;
1101 }
1102
1103 // Those are the only conditions under which we will block shutdown.
1104 return DOWNLOAD_CLOSE_OK;
1105 }
1106
1045 //////////////////////////////////////////////////////////////////////////////// 1107 ////////////////////////////////////////////////////////////////////////////////
1046 // Browser, TabStripModel pass-thrus: 1108 // Browser, TabStripModel pass-thrus:
1047 1109
1048 int Browser::tab_count() const { 1110 int Browser::tab_count() const {
1049 return tab_handler_->GetTabStripModel()->count(); 1111 return tab_handler_->GetTabStripModel()->count();
1050 } 1112 }
1051 1113
1052 int Browser::active_index() const { 1114 int Browser::active_index() const {
1053 return tab_handler_->GetTabStripModel()->active_index(); 1115 return tab_handler_->GetTabStripModel()->active_index();
1054 } 1116 }
(...skipping 3337 matching lines...) Expand 10 before | Expand all | Expand 10 after
4392 MessageLoop::current()->PostTask( 4454 MessageLoop::current()->PostTask(
4393 FROM_HERE, 4455 FROM_HERE,
4394 method_factory_.NewRunnableMethod(&Browser::ProcessPendingTabs)); 4456 method_factory_.NewRunnableMethod(&Browser::ProcessPendingTabs));
4395 } 4457 }
4396 } 4458 }
4397 } 4459 }
4398 4460
4399 /////////////////////////////////////////////////////////////////////////////// 4461 ///////////////////////////////////////////////////////////////////////////////
4400 // Browser, In-progress download termination handling (private): 4462 // Browser, In-progress download termination handling (private):
4401 4463
4402 void Browser::CheckDownloadsInProgress(bool* normal_downloads_are_present,
4403 bool* incognito_downloads_are_present) {
4404 *normal_downloads_are_present = false;
4405 *incognito_downloads_are_present = false;
4406
4407 // If there are no download in-progress, our job is done.
4408 DownloadManager* download_manager = NULL;
4409 // But first we need to check for the existence of the download manager, as
4410 // GetDownloadManager() will unnecessarily try to create one if it does not
4411 // exist.
4412 if (profile()->HasCreatedDownloadManager())
4413 download_manager = profile()->GetDownloadManager();
4414 if (profile()->IsOffTheRecord()) {
4415 // Browser is incognito and so download_manager if present is for incognito
4416 // downloads.
4417 *incognito_downloads_are_present =
4418 (download_manager && download_manager->in_progress_count() != 0);
4419 // Check original profile.
4420 if (profile()->GetOriginalProfile()->HasCreatedDownloadManager())
4421 download_manager = profile()->GetOriginalProfile()->GetDownloadManager();
4422 }
4423
4424 *normal_downloads_are_present =
4425 (download_manager && download_manager->in_progress_count() != 0);
4426 }
4427
4428 bool Browser::CanCloseWithInProgressDownloads() { 4464 bool Browser::CanCloseWithInProgressDownloads() {
4429 if (cancel_download_confirmation_state_ != NOT_PROMPTED) { 4465 if (cancel_download_confirmation_state_ != NOT_PROMPTED) {
4430 if (cancel_download_confirmation_state_ == WAITING_FOR_RESPONSE) { 4466 if (cancel_download_confirmation_state_ == WAITING_FOR_RESPONSE) {
4431 // We need to hear from the user before we can close. 4467 // We need to hear from the user before we can close.
4432 return false; 4468 return false;
4433 } 4469 }
4434 // RESPONSE_RECEIVED case, the user decided to go along with the closing. 4470 // RESPONSE_RECEIVED case, the user decided to go along with the closing.
4435 return true; 4471 return true;
4436 } 4472 }
4437 // Indicated that normal (non-incognito) downloads are pending. 4473
4438 bool normal_downloads_are_present = false; 4474 int num_downloads_blocking;
4439 bool incognito_downloads_are_present = false; 4475 if (DOWNLOAD_CLOSE_OK ==
4440 CheckDownloadsInProgress(&normal_downloads_are_present, 4476 OkToCloseWithInProgressDownloads(&num_downloads_blocking))
4441 &incognito_downloads_are_present);
4442 if (!normal_downloads_are_present && !incognito_downloads_are_present)
4443 return true; 4477 return true;
4444 4478
4445 if (is_attempting_to_close_browser_) 4479 // Closing this window will kill some downloads; prompt to make sure
4446 return true; 4480 // that's ok.
4447
4448 if ((!normal_downloads_are_present && !profile()->IsOffTheRecord()) ||
4449 (!incognito_downloads_are_present && profile()->IsOffTheRecord()))
4450 return true;
4451
4452 // Let's figure out if we are the last window for our profile.
4453 // Note that we cannot just use BrowserList::GetBrowserCount as browser
4454 // windows closing is delayed and the returned count might include windows
4455 // that are being closed.
4456 // The browser allowed to be closed only if:
4457 // 1. It is a regular browser and there are no regular downloads present or
4458 // this is not the last regular browser window.
4459 // 2. It is an incognito browser and there are no incognito downloads present
4460 // or this is not the last incognito browser window.
4461 int count = 0;
4462 for (BrowserList::const_iterator iter = BrowserList::begin();
4463 iter != BrowserList::end(); ++iter) {
4464 // Don't count this browser window or any other in the process of closing.
4465 // Only consider tabbed browser windows, not popups.
4466 Browser* const browser = *iter;
4467 if (browser == this
4468 || browser->is_attempting_to_close_browser_
4469 || !browser->is_type_tabbed())
4470 continue;
4471
4472 // Verify that this is not the last non-incognito or incognito browser,
4473 // depending on the pending downloads.
4474 if (normal_downloads_are_present && !profile()->IsOffTheRecord() &&
4475 browser->profile()->IsOffTheRecord())
4476 continue;
4477 if (incognito_downloads_are_present && profile()->IsOffTheRecord() &&
4478 !browser->profile()->IsOffTheRecord())
4479 continue;
4480
4481 // We test the original profile, because an incognito browser window keeps
4482 // the original profile alive (and its DownloadManager).
4483 // We also need to test explicitly the profile directly so that 2 incognito
4484 // profiles count as a match.
4485 if ((*iter)->profile() == profile() ||
4486 (*iter)->profile()->GetOriginalProfile() == profile())
4487 count++;
4488 }
4489 if (count > 0)
4490 return true;
4491
4492 cancel_download_confirmation_state_ = WAITING_FOR_RESPONSE; 4481 cancel_download_confirmation_state_ = WAITING_FOR_RESPONSE;
4493 window_->ConfirmBrowserCloseWithPendingDownloads(); 4482 window_->ConfirmBrowserCloseWithPendingDownloads();
4494 4483
4495 // Return false so the browser does not close. We'll close if the user 4484 // Return false so the browser does not close. We'll close if the user
4496 // confirms in the dialog. 4485 // confirms in the dialog.
4497 return false; 4486 return false;
4498 } 4487 }
4499 4488
4500 /////////////////////////////////////////////////////////////////////////////// 4489 ///////////////////////////////////////////////////////////////////////////////
4501 // Browser, Assorted utility functions (private): 4490 // Browser, Assorted utility functions (private):
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
4783 window_->BookmarkBarStateChanged(animate_type); 4772 window_->BookmarkBarStateChanged(animate_type);
4784 } 4773 }
4785 4774
4786 void Browser::ShowSyncSetup() { 4775 void Browser::ShowSyncSetup() {
4787 ProfileSyncService* service = profile()->GetProfileSyncService(); 4776 ProfileSyncService* service = profile()->GetProfileSyncService();
4788 if (service->HasSyncSetupCompleted()) 4777 if (service->HasSyncSetupCompleted())
4789 ShowOptionsTab(chrome::kSyncSetupSubPage); 4778 ShowOptionsTab(chrome::kSyncSetupSubPage);
4790 else 4779 else
4791 profile()->GetProfileSyncService()->ShowLoginDialog(); 4780 profile()->GetProfileSyncService()->ShowLoginDialog();
4792 } 4781 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_close_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698