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 #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 Loading... |
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_ |
OLD | NEW |