Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 250 bool selection_contains_browser_process = false; | 250 bool selection_contains_browser_process = false; |
| 251 for (const auto& selection : selections) { | 251 for (const auto& selection : selections) { |
| 252 if (table_model_->IsBrowserProcess(selection)) { | 252 if (table_model_->IsBrowserProcess(selection)) { |
| 253 selection_contains_browser_process = true; | 253 selection_contains_browser_process = true; |
| 254 break; | 254 break; |
| 255 } | 255 } |
| 256 } | 256 } |
| 257 | 257 |
| 258 kill_button_->SetEnabled(!selection_contains_browser_process && | 258 kill_button_->SetEnabled(!selection_contains_browser_process && |
| 259 !selections.empty() && | 259 !selections.empty() && |
| 260 TaskManager::IsEndProcessEnabled()); | 260 TaskManagerInterface::IsEndProcessEnabled()); |
| 261 } | 261 } |
| 262 | 262 |
| 263 void NewTaskManagerView::OnDoubleClick() { | 263 void NewTaskManagerView::OnDoubleClick() { |
| 264 ActivateFocusedTab(); | 264 ActivateFocusedTab(); |
| 265 } | 265 } |
| 266 | 266 |
| 267 void NewTaskManagerView::OnKeyDown(ui::KeyboardCode keycode) { | 267 void NewTaskManagerView::OnKeyDown(ui::KeyboardCode keycode) { |
| 268 if (keycode == ui::VKEY_RETURN) | 268 if (keycode == ui::VKEY_RETURN) |
| 269 ActivateFocusedTab(); | 269 ActivateFocusedTab(); |
| 270 } | 270 } |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 376 if (!g_browser_process->local_state()) | 376 if (!g_browser_process->local_state()) |
| 377 return; | 377 return; |
| 378 | 378 |
| 379 const base::DictionaryValue* dictionary = | 379 const base::DictionaryValue* dictionary = |
| 380 g_browser_process->local_state()->GetDictionary(GetWindowName()); | 380 g_browser_process->local_state()->GetDictionary(GetWindowName()); |
| 381 if (dictionary) | 381 if (dictionary) |
| 382 dictionary->GetBoolean("always_on_top", &is_always_on_top_); | 382 dictionary->GetBoolean("always_on_top", &is_always_on_top_); |
| 383 } | 383 } |
| 384 | 384 |
| 385 } // namespace task_management | 385 } // namespace task_management |
| 386 | |
| 387 #if !defined(OS_MACOSX) | |
| 388 | |
| 389 namespace chrome { | |
| 390 | |
| 391 // Declared in browser_dialogs.h so others don't need to depend on our header. | |
|
tapted
2016/04/26 01:54:03
There is also
chrome/browser/ui/views/browser_di
tapted
2016/04/26 03:25:24
Ah, actually it's not ;). With mac_views_browser=1
afakhry
2016/04/26 22:22:43
There are no browser_dialogs_views.h.
There will
tapted
2016/04/26 22:43:50
Sorry - typo. it should go in browser_dialogs_view
| |
| 392 void ShowTaskManager(Browser* browser) { | |
| 393 task_management::NewTaskManagerView::Show(browser); | |
| 394 } | |
| 395 | |
| 396 void HideTaskManager() { | |
| 397 task_management::NewTaskManagerView::Hide(); | |
| 398 } | |
| 399 | |
| 400 } // namespace chrome | |
| 401 | |
| 402 #endif // !defined(OS_MACOSX) | |
| OLD | NEW |