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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
880 // Protocol Handler Registry ----------------------------------------------- | 880 // Protocol Handler Registry ----------------------------------------------- |
881 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. | 881 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. |
882 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, | 882 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, |
883 | 883 |
884 // Sent when the cached profile info has changed. | 884 // Sent when the cached profile info has changed. |
885 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, | 885 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, |
886 | 886 |
887 // Sent when the browser enters or exits fullscreen mode. | 887 // Sent when the browser enters or exits fullscreen mode. |
888 NOTIFICATION_FULLSCREEN_CHANGED, | 888 NOTIFICATION_FULLSCREEN_CHANGED, |
889 | 889 |
| 890 // Sent by the PluginPrefs when there is a change of plugin |
| 891 // enable/disable status. |
| 892 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
| 893 |
890 // Note:- | 894 // Note:- |
891 // Currently only Content and Chrome define and use notifications. | 895 // Currently only Content and Chrome define and use notifications. |
892 // Custom notifications not belonging to Content and Chrome should start | 896 // Custom notifications not belonging to Content and Chrome should start |
893 // from here. | 897 // from here. |
894 NOTIFICATION_CHROME_END, | 898 NOTIFICATION_CHROME_END, |
895 }; | 899 }; |
896 | 900 |
897 } // namespace chrome | 901 } // namespace chrome |
898 | 902 |
899 | 903 |
900 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 904 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |