| 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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 | 745 |
| 746 // Sent when Chrome believes an update has been installed and available for | 746 // Sent when Chrome believes an update has been installed and available for |
| 747 // long enough with the user shutting down to let it take effect. See | 747 // long enough with the user shutting down to let it take effect. See |
| 748 // upgrade_detector.cc for details on how long it waits. No details are | 748 // upgrade_detector.cc for details on how long it waits. No details are |
| 749 // expected. | 749 // expected. |
| 750 NOTIFICATION_UPGRADE_RECOMMENDED, | 750 NOTIFICATION_UPGRADE_RECOMMENDED, |
| 751 | 751 |
| 752 // Sent when a critical update has been installed. No details are expected. | 752 // Sent when a critical update has been installed. No details are expected. |
| 753 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, | 753 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, |
| 754 | 754 |
| 755 // Sent when the current install is outdated. No details are expected. |
| 756 NOTIFICATION_OUTDATED_INSTALL, |
| 757 |
| 755 // Software incompatibility notifications ---------------------------------- | 758 // Software incompatibility notifications ---------------------------------- |
| 756 | 759 |
| 757 // Sent when Chrome has finished compiling the list of loaded modules (and | 760 // Sent when Chrome has finished compiling the list of loaded modules (and |
| 758 // other modules of interest). No details are expected. | 761 // other modules of interest). No details are expected. |
| 759 NOTIFICATION_MODULE_LIST_ENUMERATED, | 762 NOTIFICATION_MODULE_LIST_ENUMERATED, |
| 760 | 763 |
| 761 // Sent when Chrome is done scanning the module list and when the user has | 764 // Sent when Chrome is done scanning the module list and when the user has |
| 762 // acknowledged the module incompatibility. No details are expected. | 765 // acknowledged the module incompatibility. No details are expected. |
| 763 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, | 766 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, |
| 764 | 767 |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 // Currently only Content and Chrome define and use notifications. | 1256 // Currently only Content and Chrome define and use notifications. |
| 1254 // Custom notifications not belonging to Content and Chrome should start | 1257 // Custom notifications not belonging to Content and Chrome should start |
| 1255 // from here. | 1258 // from here. |
| 1256 NOTIFICATION_CHROME_END, | 1259 NOTIFICATION_CHROME_END, |
| 1257 }; | 1260 }; |
| 1258 | 1261 |
| 1259 } // namespace chrome | 1262 } // namespace chrome |
| 1260 | 1263 |
| 1261 | 1264 |
| 1262 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1265 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |