| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/cocoa/task_manager_mac.h" | 5 #include "chrome/browser/ui/cocoa/task_manager_mac.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/mac/bundle_locations.h" | 10 #include "base/mac/bundle_locations.h" |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 // "Task Manager" so close the existing window and fall through to | 578 // "Task Manager" so close the existing window and fall through to |
| 579 // open a new one. | 579 // open a new one. |
| 580 [[instance_->window_controller_ window] close]; | 580 [[instance_->window_controller_ window] close]; |
| 581 } | 581 } |
| 582 } | 582 } |
| 583 // Create a new instance. | 583 // Create a new instance. |
| 584 instance_ = new TaskManagerMac(TaskManager::GetInstance(), | 584 instance_ = new TaskManagerMac(TaskManager::GetInstance(), |
| 585 highlight_background_resources); | 585 highlight_background_resources); |
| 586 instance_->model_->StartUpdating(); | 586 instance_->model_->StartUpdating(); |
| 587 } | 587 } |
| 588 |
| 589 namespace chrome { |
| 590 |
| 591 // Declared in browser_dialogs.h. |
| 592 void ShowTaskManager(Browser* browser, bool highlight_background_resources) { |
| 593 TaskManagerMac::Show(highlight_background_resources); |
| 594 } |
| 595 |
| 596 } // namespace chrome |
| 597 |
| OLD | NEW |