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

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

Issue 1912773002: Remove the old task manager view (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 4 years, 7 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/views/new_task_manager_view.h" 5 #include "chrome/browser/ui/views/new_task_manager_view.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "chrome/browser/browser_process.h" 10 #include "chrome/browser/browser_process.h"
11 #include "chrome/browser/profiles/profile_manager.h" 11 #include "chrome/browser/profiles/profile_manager.h"
12 #include "chrome/browser/profiles/profile_window.h" 12 #include "chrome/browser/profiles/profile_window.h"
13 #include "chrome/browser/task_management/task_manager_interface.h"
13 #include "chrome/browser/task_management/task_manager_observer.h" 14 #include "chrome/browser/task_management/task_manager_observer.h"
14 #include "chrome/browser/task_manager/task_manager.h"
15 #include "chrome/browser/ui/browser_navigator_params.h" 15 #include "chrome/browser/ui/browser_navigator_params.h"
16 #include "chrome/browser/ui/task_manager/task_manager_columns.h" 16 #include "chrome/browser/ui/task_manager/task_manager_columns.h"
17 #include "chrome/browser/ui/user_manager.h" 17 #include "chrome/browser/ui/user_manager.h"
18 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
19 #include "chrome/common/url_constants.h" 19 #include "chrome/common/url_constants.h"
20 #include "chrome/grit/chromium_strings.h" 20 #include "chrome/grit/chromium_strings.h"
21 #include "chrome/grit/generated_resources.h" 21 #include "chrome/grit/generated_resources.h"
22 #include "components/prefs/pref_service.h" 22 #include "components/prefs/pref_service.h"
23 #include "ui/base/l10n/l10n_util.h" 23 #include "ui/base/l10n/l10n_util.h"
24 #include "ui/base/models/table_model_observer.h" 24 #include "ui/base/models/table_model_observer.h"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 } 203 }
204 204
205 bool NewTaskManagerView::IsDialogButtonEnabled(ui::DialogButton button) const { 205 bool NewTaskManagerView::IsDialogButtonEnabled(ui::DialogButton button) const {
206 const ui::ListSelectionModel::SelectedIndices& selections( 206 const ui::ListSelectionModel::SelectedIndices& selections(
207 tab_table_->selection_model().selected_indices()); 207 tab_table_->selection_model().selected_indices());
208 for (const auto& selection : selections) { 208 for (const auto& selection : selections) {
209 if (table_model_->IsBrowserProcess(selection)) 209 if (table_model_->IsBrowserProcess(selection))
210 return false; 210 return false;
211 } 211 }
212 212
213 return !selections.empty() && TaskManager::IsEndProcessEnabled(); 213 return !selections.empty() && TaskManagerInterface::IsEndProcessEnabled();
214 } 214 }
215 215
216 void NewTaskManagerView::WindowClosing() { 216 void NewTaskManagerView::WindowClosing() {
217 // Now that the window is closed, we can allow a new one to be opened. 217 // Now that the window is closed, we can allow a new one to be opened.
218 // (WindowClosing comes in asynchronously from the call to Close() and we 218 // (WindowClosing comes in asynchronously from the call to Close() and we
219 // may have already opened a new instance). 219 // may have already opened a new instance).
220 if (g_task_manager_view == this) { 220 if (g_task_manager_view == this) {
221 // We don't have to delete |g_task_manager_view| as we don't own it. It's 221 // We don't have to delete |g_task_manager_view| as we don't own it. It's
222 // owned by the Views hierarchy. 222 // owned by the Views hierarchy.
223 g_task_manager_view = nullptr; 223 g_task_manager_view = nullptr;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 if (!g_browser_process->local_state()) 354 if (!g_browser_process->local_state())
355 return; 355 return;
356 356
357 const base::DictionaryValue* dictionary = 357 const base::DictionaryValue* dictionary =
358 g_browser_process->local_state()->GetDictionary(GetWindowName()); 358 g_browser_process->local_state()->GetDictionary(GetWindowName());
359 if (dictionary) 359 if (dictionary)
360 dictionary->GetBoolean("always_on_top", &is_always_on_top_); 360 dictionary->GetBoolean("always_on_top", &is_always_on_top_);
361 } 361 }
362 362
363 } // namespace task_management 363 } // namespace task_management
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/browser_dialogs_views.cc ('k') | chrome/browser/ui/views/task_manager_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698