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 |
932 // Sent when the browser enters or exits fullscreen mode. | 936 // Sent when the browser enters or exits fullscreen mode. |
933 NOTIFICATION_FULLSCREEN_CHANGED, | 937 NOTIFICATION_FULLSCREEN_CHANGED, |
934 | 938 |
935 // Sent by the PluginPrefs when there is a change of plugin enable/disable | 939 // Sent by the PluginPrefs when there is a change of plugin enable/disable |
936 // status. The source is the profile. | 940 // status. The source is the profile. |
937 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, | 941 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
938 | 942 |
939 // Panels Notifications. The Panels are small browser windows near the bottom | 943 // Panels Notifications. The Panels are small browser windows near the bottom |
940 // of the screen. | 944 // of the screen. |
941 // Sent when all nonblocking bounds animations are finished across panels. | 945 // Sent when all nonblocking bounds animations are finished across panels. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 // Currently only Content and Chrome define and use notifications. | 986 // Currently only Content and Chrome define and use notifications. |
983 // Custom notifications not belonging to Content and Chrome should start | 987 // Custom notifications not belonging to Content and Chrome should start |
984 // from here. | 988 // from here. |
985 NOTIFICATION_CHROME_END, | 989 NOTIFICATION_CHROME_END, |
986 }; | 990 }; |
987 | 991 |
988 } // namespace chrome | 992 } // namespace chrome |
989 | 993 |
990 | 994 |
991 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 995 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |