| 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 |
| 322 // Non-history storage services -------------------------------------------- | 327 // Non-history storage services -------------------------------------------- |
| 323 | 328 |
| 324 // Notification that the TemplateURLService has finished loading from the | 329 // Notification that the TemplateURLService has finished loading from the |
| 325 // database. The source is the TemplateURLService, and the details are | 330 // database. The source is the TemplateURLService, and the details are |
| 326 // NoDetails. | 331 // NoDetails. |
| 327 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, | 332 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, |
| 328 | 333 |
| 329 // Sent when a TemplateURL is removed from the model. The source is the | 334 // Sent when a TemplateURL is removed from the model. The source is the |
| 330 // Profile, and the details the id of the TemplateURL being removed. | 335 // Profile, and the details the id of the TemplateURL being removed. |
| 331 NOTIFICATION_TEMPLATE_URL_REMOVED, | 336 NOTIFICATION_TEMPLATE_URL_REMOVED, |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 // Currently only Content and Chrome define and use notifications. | 941 // Currently only Content and Chrome define and use notifications. |
| 937 // Custom notifications not belonging to Content and Chrome should start | 942 // Custom notifications not belonging to Content and Chrome should start |
| 938 // from here. | 943 // from here. |
| 939 NOTIFICATION_CHROME_END, | 944 NOTIFICATION_CHROME_END, |
| 940 }; | 945 }; |
| 941 | 946 |
| 942 } // namespace chrome | 947 } // namespace chrome |
| 943 | 948 |
| 944 | 949 |
| 945 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 950 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |