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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 // upgrade_detector.cc for details on how long it waits. No details are | 623 // upgrade_detector.cc for details on how long it waits. No details are |
624 // expected. | 624 // expected. |
625 NOTIFICATION_UPGRADE_RECOMMENDED, | 625 NOTIFICATION_UPGRADE_RECOMMENDED, |
626 | 626 |
627 // Sent when a critical update has been installed. No details are expected. | 627 // Sent when a critical update has been installed. No details are expected. |
628 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, | 628 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, |
629 | 629 |
630 // Sent when the current install is outdated. No details are expected. | 630 // Sent when the current install is outdated. No details are expected. |
631 NOTIFICATION_OUTDATED_INSTALL, | 631 NOTIFICATION_OUTDATED_INSTALL, |
632 | 632 |
| 633 // Sent when the current install is outdated and auto-update (AU) is disabled. |
| 634 // No details are expected. |
| 635 NOTIFICATION_OUTDATED_INSTALL_NO_AU, |
| 636 |
633 // Software incompatibility notifications ---------------------------------- | 637 // Software incompatibility notifications ---------------------------------- |
634 | 638 |
635 // Sent when Chrome has finished compiling the list of loaded modules (and | 639 // Sent when Chrome has finished compiling the list of loaded modules (and |
636 // other modules of interest). No details are expected. | 640 // other modules of interest). No details are expected. |
637 NOTIFICATION_MODULE_LIST_ENUMERATED, | 641 NOTIFICATION_MODULE_LIST_ENUMERATED, |
638 | 642 |
639 // Sent when Chrome is done scanning the module list and when the user has | 643 // Sent when Chrome is done scanning the module list and when the user has |
640 // acknowledged the module incompatibility. No details are expected. | 644 // acknowledged the module incompatibility. No details are expected. |
641 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, | 645 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, |
642 | 646 |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 // Note:- | 1006 // Note:- |
1003 // Currently only Content and Chrome define and use notifications. | 1007 // Currently only Content and Chrome define and use notifications. |
1004 // Custom notifications not belonging to Content and Chrome should start | 1008 // Custom notifications not belonging to Content and Chrome should start |
1005 // from here. | 1009 // from here. |
1006 NOTIFICATION_CHROME_END, | 1010 NOTIFICATION_CHROME_END, |
1007 }; | 1011 }; |
1008 | 1012 |
1009 } // namespace chrome | 1013 } // namespace chrome |
1010 | 1014 |
1011 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ | 1015 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |