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/webui/task_manager_handler.h" | 5 #include "chrome/browser/ui/webui/task_manager/task_manager_handler.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <functional> | 8 #include <functional> |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/task_manager/task_manager.h" | 14 #include "chrome/browser/task_manager/task_manager.h" |
15 #include "chrome/browser/ui/webui/web_ui_util.h" | 15 #include "chrome/browser/ui/webui/web_ui_util.h" |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 void TaskManagerHandler::OnGroupAdded(const int group_start, | 397 void TaskManagerHandler::OnGroupAdded(const int group_start, |
398 const int group_length) { | 398 const int group_length) { |
399 } | 399 } |
400 | 400 |
401 void TaskManagerHandler::OnGroupRemoved(const int group_start, | 401 void TaskManagerHandler::OnGroupRemoved(const int group_start, |
402 const int group_length) { | 402 const int group_length) { |
403 } | 403 } |
404 | 404 |
405 void TaskManagerHandler::OnReadyPeriodicalUpdate() { | 405 void TaskManagerHandler::OnReadyPeriodicalUpdate() { |
406 } | 406 } |
OLD | NEW |