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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
619 // Notification that a pop-down menu was opened, for propagating | 619 // Notification that a pop-down menu was opened, for propagating |
620 // to an accessibility extension. | 620 // to an accessibility extension. |
621 // Details will be an AccessibilityMenuInfo. | 621 // Details will be an AccessibilityMenuInfo. |
622 NOTIFICATION_ACCESSIBILITY_MENU_OPENED, | 622 NOTIFICATION_ACCESSIBILITY_MENU_OPENED, |
623 | 623 |
624 // Notification that a pop-down menu was closed, for propagating | 624 // Notification that a pop-down menu was closed, for propagating |
625 // to an accessibility extension. | 625 // to an accessibility extension. |
626 // Details will be an AccessibilityMenuInfo. | 626 // Details will be an AccessibilityMenuInfo. |
627 NOTIFICATION_ACCESSIBILITY_MENU_CLOSED, | 627 NOTIFICATION_ACCESSIBILITY_MENU_CLOSED, |
628 | 628 |
629 // Notification that a volume was up, for propagating | |
dmazzoni
2011/08/24 14:49:02
Change to "Notification that the volume was increa
yoshiki
2011/08/29 09:16:16
Done.
| |
630 // to an accessibility extension. | |
631 // Details will be an AccessibilityVolumeInfo. | |
632 NOTIFICATION_ACCESSIBILITY_VOLUME_UP, | |
633 | |
634 // Notification that a volume was down, for propagating | |
dmazzoni
2011/08/24 14:49:02
Change to "Notification that the volume was decrea
yoshiki
2011/08/29 09:16:16
This was replaced with NOTIFICATION_ACCESSIBILITY_
| |
635 // to an accessibility extension. | |
636 // Details will be an AccessibilityVolumeInfo. | |
637 NOTIFICATION_ACCESSIBILITY_VOLUME_DOWN, | |
638 | |
639 // Notification that a volume was muted, for propagating | |
dmazzoni
2011/08/24 14:49:02
Change to "Notification that the volume was muted
yoshiki
2011/08/29 09:16:16
This was replaced with NOTIFICATION_ACCESSIBILITY_
| |
640 // to an accessibility extension. | |
641 // Details will be an AccessibilityVolumeInfo. | |
642 NOTIFICATION_ACCESSIBILITY_VOLUME_MUTE, | |
643 | |
629 // Content Settings -------------------------------------------------------- | 644 // Content Settings -------------------------------------------------------- |
630 | 645 |
631 // Sent when content settings change. The source is a HostContentSettings | 646 // Sent when content settings change. The source is a HostContentSettings |
632 // object, the details are ContentSettingsNotificationsDetails. | 647 // object, the details are ContentSettingsNotificationsDetails. |
633 NOTIFICATION_CONTENT_SETTINGS_CHANGED, | 648 NOTIFICATION_CONTENT_SETTINGS_CHANGED, |
634 | 649 |
635 // Sent when the collect cookies dialog is shown. The source is a | 650 // Sent when the collect cookies dialog is shown. The source is a |
636 // TabSpecificContentSettings object, there are no details. | 651 // TabSpecificContentSettings object, there are no details. |
637 NOTIFICATION_COLLECTED_COOKIES_SHOWN, | 652 NOTIFICATION_COLLECTED_COOKIES_SHOWN, |
638 | 653 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
870 // Currently only Content and Chrome define and use notifications. | 885 // Currently only Content and Chrome define and use notifications. |
871 // Custom notifications not belonging to Content and Chrome should start | 886 // Custom notifications not belonging to Content and Chrome should start |
872 // from here. | 887 // from here. |
873 NOTIFICATION_CHROME_END, | 888 NOTIFICATION_CHROME_END, |
874 }; | 889 }; |
875 | 890 |
876 } // namespace chrome | 891 } // namespace chrome |
877 | 892 |
878 | 893 |
879 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 894 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |