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

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

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 #ifndef CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_TASK_MANAGER_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_TASK_MANAGER_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "content/public/browser/web_ui_message_handler.h" 13 #include "content/public/browser/web_ui_message_handler.h"
14 #include "chrome/browser/task_manager/task_manager.h" 14 #include "chrome/browser/task_manager/task_manager.h"
15 15
16 namespace base { 16 namespace base {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 // Invoked when group(s) are added/changed/removed. 71 // Invoked when group(s) are added/changed/removed.
72 // These method are called from OnItemAdded/-Changed/-Removed internally. 72 // These method are called from OnItemAdded/-Changed/-Removed internally.
73 void OnGroupAdded(int start, int length); 73 void OnGroupAdded(int start, int length);
74 void OnGroupChanged(int start, int length); 74 void OnGroupChanged(int start, int length);
75 void OnGroupRemoved(int start, int length); 75 void OnGroupRemoved(int start, int length);
76 76
77 DISALLOW_COPY_AND_ASSIGN(TaskManagerHandler); 77 DISALLOW_COPY_AND_ASSIGN(TaskManagerHandler);
78 }; 78 };
79 79
80 #endif // CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_HANDLER_H_ 80 #endif // CHROME_BROWSER_UI_WEBUI_TASK_MANAGER_TASK_MANAGER_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698