| 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/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
| 10 | 10 |
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 NOTIFICATION_KEYBOARD_VISIBLE_BOUNDS_CHANGED, | 922 NOTIFICATION_KEYBOARD_VISIBLE_BOUNDS_CHANGED, |
| 923 #endif | 923 #endif |
| 924 | 924 |
| 925 // Protocol Handler Registry ----------------------------------------------- | 925 // Protocol Handler Registry ----------------------------------------------- |
| 926 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. | 926 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. |
| 927 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, | 927 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, |
| 928 | 928 |
| 929 // Sent when the cached profile info has changed. | 929 // Sent when the cached profile info has changed. |
| 930 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, | 930 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, |
| 931 | 931 |
| 932 // Sent when the cached profile has finished writing a profile picture to | |
| 933 // disk. | |
| 934 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED, | |
| 935 | |
| 936 // Sent when the browser enters or exits fullscreen mode. | 932 // Sent when the browser enters or exits fullscreen mode. |
| 937 NOTIFICATION_FULLSCREEN_CHANGED, | 933 NOTIFICATION_FULLSCREEN_CHANGED, |
| 938 | 934 |
| 939 // Sent by the PluginPrefs when there is a change of plugin enable/disable | 935 // Sent by the PluginPrefs when there is a change of plugin enable/disable |
| 940 // status. The source is the profile. | 936 // status. The source is the profile. |
| 941 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, | 937 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
| 942 | 938 |
| 943 // Panels Notifications. The Panels are small browser windows near the bottom | 939 // Panels Notifications. The Panels are small browser windows near the bottom |
| 944 // of the screen. | 940 // of the screen. |
| 945 // Sent when all nonblocking bounds animations are finished across panels. | 941 // Sent when all nonblocking bounds animations are finished across panels. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 // Currently only Content and Chrome define and use notifications. | 982 // Currently only Content and Chrome define and use notifications. |
| 987 // Custom notifications not belonging to Content and Chrome should start | 983 // Custom notifications not belonging to Content and Chrome should start |
| 988 // from here. | 984 // from here. |
| 989 NOTIFICATION_CHROME_END, | 985 NOTIFICATION_CHROME_END, |
| 990 }; | 986 }; |
| 991 | 987 |
| 992 } // namespace chrome | 988 } // namespace chrome |
| 993 | 989 |
| 994 | 990 |
| 995 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 991 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |