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_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 | 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 | 739 |
740 // Sent when Chrome believes an update has been installed and available for | 740 // Sent when Chrome believes an update has been installed and available for |
741 // long enough with the user shutting down to let it take effect. See | 741 // long enough with the user shutting down to let it take effect. See |
742 // upgrade_detector.cc for details on how long it waits. No details are | 742 // upgrade_detector.cc for details on how long it waits. No details are |
743 // expected. | 743 // expected. |
744 NOTIFICATION_UPGRADE_RECOMMENDED, | 744 NOTIFICATION_UPGRADE_RECOMMENDED, |
745 | 745 |
746 // Sent when a critical update has been installed. No details are expected. | 746 // Sent when a critical update has been installed. No details are expected. |
747 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, | 747 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, |
748 | 748 |
| 749 // Sent when the current install is outdated. No details are expected. |
| 750 NOTIFICATION_OUTDATED_INSTALL, |
| 751 |
749 // Software incompatibility notifications ---------------------------------- | 752 // Software incompatibility notifications ---------------------------------- |
750 | 753 |
751 // Sent when Chrome has finished compiling the list of loaded modules (and | 754 // Sent when Chrome has finished compiling the list of loaded modules (and |
752 // other modules of interest). No details are expected. | 755 // other modules of interest). No details are expected. |
753 NOTIFICATION_MODULE_LIST_ENUMERATED, | 756 NOTIFICATION_MODULE_LIST_ENUMERATED, |
754 | 757 |
755 // Sent when Chrome is done scanning the module list and when the user has | 758 // Sent when Chrome is done scanning the module list and when the user has |
756 // acknowledged the module incompatibility. No details are expected. | 759 // acknowledged the module incompatibility. No details are expected. |
757 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, | 760 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, |
758 | 761 |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 // Currently only Content and Chrome define and use notifications. | 1240 // Currently only Content and Chrome define and use notifications. |
1238 // Custom notifications not belonging to Content and Chrome should start | 1241 // Custom notifications not belonging to Content and Chrome should start |
1239 // from here. | 1242 // from here. |
1240 NOTIFICATION_CHROME_END, | 1243 NOTIFICATION_CHROME_END, |
1241 }; | 1244 }; |
1242 | 1245 |
1243 } // namespace chrome | 1246 } // namespace chrome |
1244 | 1247 |
1245 | 1248 |
1246 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1249 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |