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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
859 NOTIFICATION_EDITABLE_ELEMENT_TOUCHED, | 859 NOTIFICATION_EDITABLE_ELEMENT_TOUCHED, |
860 #endif | 860 #endif |
861 | 861 |
862 // Protocol Handler Registry ----------------------------------------------- | 862 // Protocol Handler Registry ----------------------------------------------- |
863 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. | 863 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. |
864 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, | 864 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, |
865 | 865 |
866 // Sent when the cached profile info has changed. | 866 // Sent when the cached profile info has changed. |
867 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, | 867 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, |
868 | 868 |
| 869 // Sent by the PluginPrefs when there is a change of plugin |
| 870 // enable/disable status. |
| 871 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
| 872 |
869 // Note:- | 873 // Note:- |
870 // Currently only Content and Chrome define and use notifications. | 874 // Currently only Content and Chrome define and use notifications. |
871 // Custom notifications not belonging to Content and Chrome should start | 875 // Custom notifications not belonging to Content and Chrome should start |
872 // from here. | 876 // from here. |
873 NOTIFICATION_CHROME_END, | 877 NOTIFICATION_CHROME_END, |
874 }; | 878 }; |
875 | 879 |
876 } // namespace chrome | 880 } // namespace chrome |
877 | 881 |
878 | 882 |
879 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 883 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |