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

Side by Side Diff: chrome/browser/ui/webui/task_manager/task_manager_handler.cc

Issue 9465014: Added yoshiki@chromium.org to task-manager related OWNERS files. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed include path. Created 8 years, 9 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/task_manager/task_manager_handler.h ('k') | chrome/browser/ui/webui/task_manager/task_manager_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698