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 | |
318 // Non-history storage services -------------------------------------------- | 313 // Non-history storage services -------------------------------------------- |
319 | 314 |
320 // Notification that the TemplateURLService has finished loading from the | 315 // Notification that the TemplateURLService has finished loading from the |
321 // database. The source is the TemplateURLService, and the details are | 316 // database. The source is the TemplateURLService, and the details are |
322 // NoDetails. | 317 // NoDetails. |
323 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, | 318 NOTIFICATION_TEMPLATE_URL_SERVICE_LOADED, |
324 | 319 |
325 // Sent when a TemplateURL is removed from the model. The source is the | 320 // Sent when a TemplateURL is removed from the model. The source is the |
326 // Profile, and the details the id of the TemplateURL being removed. | 321 // Profile, and the details the id of the TemplateURL being removed. |
327 NOTIFICATION_TEMPLATE_URL_REMOVED, | 322 NOTIFICATION_TEMPLATE_URL_REMOVED, |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
904 // Currently only Content and Chrome define and use notifications. | 899 // Currently only Content and Chrome define and use notifications. |
905 // Custom notifications not belonging to Content and Chrome should start | 900 // Custom notifications not belonging to Content and Chrome should start |
906 // from here. | 901 // from here. |
907 NOTIFICATION_CHROME_END, | 902 NOTIFICATION_CHROME_END, |
908 }; | 903 }; |
909 | 904 |
910 } // namespace chrome | 905 } // namespace chrome |
911 | 906 |
912 | 907 |
913 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 908 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |