| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_BROWSER_CHROME_NOTIFICATION_TYPES_H_ | 5 #ifndef CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ |
| 6 #define CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ | 6 #define CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
| 10 | 10 |
| (...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1113 | 1113 |
| 1114 // Sent when the Ash session has started. In its current incantation this is | 1114 // Sent when the Ash session has started. In its current incantation this is |
| 1115 // generated when the metro app has connected to the browser IPC channel. | 1115 // generated when the metro app has connected to the browser IPC channel. |
| 1116 // Used only on Windows. | 1116 // Used only on Windows. |
| 1117 NOTIFICATION_ASH_SESSION_STARTED, | 1117 NOTIFICATION_ASH_SESSION_STARTED, |
| 1118 // Sent when the Ash session ended. Currently this means the metro app exited. | 1118 // Sent when the Ash session ended. Currently this means the metro app exited. |
| 1119 // Used only on Windows. | 1119 // Used only on Windows. |
| 1120 NOTIFICATION_ASH_SESSION_ENDED, | 1120 NOTIFICATION_ASH_SESSION_ENDED, |
| 1121 #endif | 1121 #endif |
| 1122 | 1122 |
| 1123 // Sent when a new web store promo has been loaded. | |
| 1124 NOTIFICATION_WEB_STORE_PROMO_LOADED, | |
| 1125 | |
| 1126 // Protocol Handler Registry ----------------------------------------------- | 1123 // Protocol Handler Registry ----------------------------------------------- |
| 1127 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. | 1124 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. |
| 1128 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, | 1125 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, |
| 1129 | 1126 |
| 1130 // Sent when the cached profile info has changed. | 1127 // Sent when the cached profile info has changed. |
| 1131 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, | 1128 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, |
| 1132 | 1129 |
| 1133 // Sent when the cached profile has finished writing a profile picture to | 1130 // Sent when the cached profile has finished writing a profile picture to |
| 1134 // disk. | 1131 // disk. |
| 1135 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED, | 1132 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1215 // Note:- | 1212 // Note:- |
| 1216 // Currently only Content and Chrome define and use notifications. | 1213 // Currently only Content and Chrome define and use notifications. |
| 1217 // Custom notifications not belonging to Content and Chrome should start | 1214 // Custom notifications not belonging to Content and Chrome should start |
| 1218 // from here. | 1215 // from here. |
| 1219 NOTIFICATION_CHROME_END, | 1216 NOTIFICATION_CHROME_END, |
| 1220 }; | 1217 }; |
| 1221 | 1218 |
| 1222 } // namespace chrome | 1219 } // namespace chrome |
| 1223 | 1220 |
| 1224 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ | 1221 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |