| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 NOTIFICATION_URLS_STARRED, | 312 NOTIFICATION_URLS_STARRED, |
| 313 | 313 |
| 314 // Sent when the bookmark bar model finishes loading. This source is the | 314 // Sent when the bookmark bar model finishes loading. This source is the |
| 315 // Profile, and the details aren't used. | 315 // Profile, and the details aren't used. |
| 316 NOTIFICATION_BOOKMARK_MODEL_LOADED, | 316 NOTIFICATION_BOOKMARK_MODEL_LOADED, |
| 317 | 317 |
| 318 // Sent when the bookmark bubble is shown for a particular URL. The source | 318 // Sent when the bookmark bubble is shown for a particular URL. The source |
| 319 // is the profile, the details the URL. | 319 // is the profile, the details the URL. |
| 320 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, | 320 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, |
| 321 | 321 |
| 322 // Task Manager ------------------------------------------------------------ | |
| 323 | |
| 324 // Sent when WebUI TaskManager opens and is ready for showing tasks. | |
| 325 NOTIFICATION_TASK_MANAGER_WINDOW_READY, | |
| 326 | |
| 327 // Non-history storage services -------------------------------------------- | 322 // Non-history storage services -------------------------------------------- |
| 328 | 323 |
| 329 // Notification that the TemplateURLService has finished loading from the | 324 // Notification that the TemplateURLService has finished loading from the |
| 330 // database. The source is the TemplateURLService, and the details are | 325 // database. The source is the TemplateURLService, and the details are |
| 331 // NoDetails. | 326 // NoDetails. |
| 332 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, | 327 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, |
| 333 | 328 |
| 334 // Sent when a TemplateURL is removed from the model. The source is the | 329 // Sent when a TemplateURL is removed from the model. The source is the |
| 335 // Profile, and the details the id of the TemplateURL being removed. | 330 // Profile, and the details the id of the TemplateURL being removed. |
| 336 NOTIFICATION_TEMPLATE_URL_REMOVED, | 331 NOTIFICATION_TEMPLATE_URL_REMOVED, |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 // Currently only Content and Chrome define and use notifications. | 936 // Currently only Content and Chrome define and use notifications. |
| 942 // Custom notifications not belonging to Content and Chrome should start | 937 // Custom notifications not belonging to Content and Chrome should start |
| 943 // from here. | 938 // from here. |
| 944 NOTIFICATION_CHROME_END, | 939 NOTIFICATION_CHROME_END, |
| 945 }; | 940 }; |
| 946 | 941 |
| 947 } // namespace chrome | 942 } // namespace chrome |
| 948 | 943 |
| 949 | 944 |
| 950 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 945 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |