OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common/content_notification_types.h" | 9 #include "content/common/content_notification_types.h" |
10 | 10 |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 NOTIFICATION_URLS_STARRED, | 303 NOTIFICATION_URLS_STARRED, |
304 | 304 |
305 // Sent when the bookmark bar model finishes loading. This source is the | 305 // Sent when the bookmark bar model finishes loading. This source is the |
306 // Profile, and the details aren't used. | 306 // Profile, and the details aren't used. |
307 NOTIFICATION_BOOKMARK_MODEL_LOADED, | 307 NOTIFICATION_BOOKMARK_MODEL_LOADED, |
308 | 308 |
309 // Sent when the bookmark bubble is shown for a particular URL. The source | 309 // Sent when the bookmark bubble is shown for a particular URL. The source |
310 // is the profile, the details the URL. | 310 // is the profile, the details the URL. |
311 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, | 311 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, |
312 | 312 |
| 313 // Task Manager ------------------------------------------------------------ |
| 314 |
| 315 // Sent when WebUI TaskManager opens and is ready for showing tasks. |
| 316 NOTIFICATION_TASK_MANAGER_WINDOW_READY, |
| 317 |
313 // Non-history storage services -------------------------------------------- | 318 // Non-history storage services -------------------------------------------- |
314 | 319 |
315 // Notification that the TemplateURLService has finished loading from the | 320 // Notification that the TemplateURLService has finished loading from the |
316 // database. The source is the TemplateURLService, and the details are | 321 // database. The source is the TemplateURLService, and the details are |
317 // NoDetails. | 322 // NoDetails. |
318 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, | 323 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, |
319 | 324 |
320 // Sent when a TemplateURL is removed from the model. The source is the | 325 // Sent when a TemplateURL is removed from the model. The source is the |
321 // Profile, and the details the id of the TemplateURL being removed. | 326 // Profile, and the details the id of the TemplateURL being removed. |
322 NOTIFICATION_TEMPLATE_URL_REMOVED, | 327 NOTIFICATION_TEMPLATE_URL_REMOVED, |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 // Currently only Content and Chrome define and use notifications. | 904 // Currently only Content and Chrome define and use notifications. |
900 // Custom notifications not belonging to Content and Chrome should start | 905 // Custom notifications not belonging to Content and Chrome should start |
901 // from here. | 906 // from here. |
902 NOTIFICATION_CHROME_END, | 907 NOTIFICATION_CHROME_END, |
903 }; | 908 }; |
904 | 909 |
905 } // namespace chrome | 910 } // namespace chrome |
906 | 911 |
907 | 912 |
908 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 913 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |