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_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 5 #ifndef CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "content/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
10 | 10 |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 | 320 |
321 // Sent when the bookmark bubble is shown for a particular URL. The source | 321 // Sent when the bookmark bubble is shown for a particular URL. The source |
322 // is the profile, the details the URL. | 322 // is the profile, the details the URL. |
323 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, | 323 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, |
324 | 324 |
325 // Task Manager ------------------------------------------------------------ | 325 // Task Manager ------------------------------------------------------------ |
326 | 326 |
327 // Sent when WebUI TaskManager opens and is ready for showing tasks. | 327 // Sent when WebUI TaskManager opens and is ready for showing tasks. |
328 NOTIFICATION_TASK_MANAGER_WINDOW_READY, | 328 NOTIFICATION_TASK_MANAGER_WINDOW_READY, |
329 | 329 |
| 330 // The TaskManagerChildProcessResourceProvider collects the list of child |
| 331 // processes when StartUpdating is called. This data is collected on the IO |
| 332 // thread and passed back to the UI thread. Once all entries are added to the |
| 333 // task manager, this notification is sent. |
| 334 NOTIFICATION_TASK_MANAGER_CHILD_PROCESSES_DATA_READY, |
| 335 |
330 // Sent when a renderer process is notified of new v8 heap statistics. The | 336 // Sent when a renderer process is notified of new v8 heap statistics. The |
331 // source is the ID of the renderer process, and the details are a | 337 // source is the ID of the renderer process, and the details are a |
332 // V8HeapStatsDetails object. | 338 // V8HeapStatsDetails object. |
333 NOTIFICATION_RENDERER_V8_HEAP_STATS_COMPUTED, | 339 NOTIFICATION_RENDERER_V8_HEAP_STATS_COMPUTED, |
334 | 340 |
335 // Sent when a renderer process is notified of a new FPS value. The source | 341 // Sent when a renderer process is notified of a new FPS value. The source |
336 // is the ID of the renderer process, and the details are an FPSDetails | 342 // is the ID of the renderer process, and the details are an FPSDetails |
337 // object. | 343 // object. |
338 NOTIFICATION_RENDERER_FPS_COMPUTED, | 344 NOTIFICATION_RENDERER_FPS_COMPUTED, |
339 | 345 |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 // Currently only Content and Chrome define and use notifications. | 1097 // Currently only Content and Chrome define and use notifications. |
1092 // Custom notifications not belonging to Content and Chrome should start | 1098 // Custom notifications not belonging to Content and Chrome should start |
1093 // from here. | 1099 // from here. |
1094 NOTIFICATION_CHROME_END, | 1100 NOTIFICATION_CHROME_END, |
1095 }; | 1101 }; |
1096 | 1102 |
1097 } // namespace chrome | 1103 } // namespace chrome |
1098 | 1104 |
1099 | 1105 |
1100 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1106 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |