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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 NOTIFICATION_EDITABLE_ELEMENT_TOUCHED, | 923 NOTIFICATION_EDITABLE_ELEMENT_TOUCHED, |
924 #endif | 924 #endif |
925 | 925 |
926 // Protocol Handler Registry ----------------------------------------------- | 926 // Protocol Handler Registry ----------------------------------------------- |
927 // Sent when a ProtocolHandlerRegistry is changed. | 927 // Sent when a ProtocolHandlerRegistry is changed. |
928 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, | 928 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, |
929 | 929 |
930 // Sent when the cached profile info has changed. | 930 // Sent when the cached profile info has changed. |
931 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, | 931 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, |
932 | 932 |
| 933 // Sent by the PluginUpdater when there is a change of plugin |
| 934 // enable/disable status. |
| 935 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
| 936 |
933 // Note:- | 937 // Note:- |
934 // Currently only Content and Chrome define and use notifications. | 938 // Currently only Content and Chrome define and use notifications. |
935 // Custom notifications not belonging to Content and Chrome should start | 939 // Custom notifications not belonging to Content and Chrome should start |
936 // from here. | 940 // from here. |
937 NOTIFICATION_CHROME_END, | 941 NOTIFICATION_CHROME_END, |
938 }; | 942 }; |
939 | 943 |
940 } // namespace chrome | 944 } // namespace chrome |
941 | 945 |
942 | 946 |
943 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 947 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |