| 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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 // Sent when a critical update has been installed. No details are expected. | 578 // Sent when a critical update has been installed. No details are expected. |
| 579 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, | 579 NOTIFICATION_CRITICAL_UPGRADE_INSTALLED, |
| 580 | 580 |
| 581 // Sent when the current install is outdated. No details are expected. | 581 // Sent when the current install is outdated. No details are expected. |
| 582 NOTIFICATION_OUTDATED_INSTALL, | 582 NOTIFICATION_OUTDATED_INSTALL, |
| 583 | 583 |
| 584 // Sent when the current install is outdated and auto-update (AU) is disabled. | 584 // Sent when the current install is outdated and auto-update (AU) is disabled. |
| 585 // No details are expected. | 585 // No details are expected. |
| 586 NOTIFICATION_OUTDATED_INSTALL_NO_AU, | 586 NOTIFICATION_OUTDATED_INSTALL_NO_AU, |
| 587 | 587 |
| 588 // Sent when elevation is needed to recover upgrade channel. |
| 589 NOTIFICATION_UPGRADE_NEEDS_ELEVATION, |
| 590 |
| 588 // Software incompatibility notifications ---------------------------------- | 591 // Software incompatibility notifications ---------------------------------- |
| 589 | 592 |
| 590 // Sent when Chrome has finished compiling the list of loaded modules (and | 593 // Sent when Chrome has finished compiling the list of loaded modules (and |
| 591 // other modules of interest). No details are expected. | 594 // other modules of interest). No details are expected. |
| 592 NOTIFICATION_MODULE_LIST_ENUMERATED, | 595 NOTIFICATION_MODULE_LIST_ENUMERATED, |
| 593 | 596 |
| 594 // Sent when Chrome is done scanning the module list and when the user has | 597 // Sent when Chrome is done scanning the module list and when the user has |
| 595 // acknowledged the module incompatibility. No details are expected. | 598 // acknowledged the module incompatibility. No details are expected. |
| 596 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, | 599 NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE, |
| 597 | 600 |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 // Note:- | 923 // Note:- |
| 921 // Currently only Content and Chrome define and use notifications. | 924 // Currently only Content and Chrome define and use notifications. |
| 922 // Custom notifications not belonging to Content and Chrome should start | 925 // Custom notifications not belonging to Content and Chrome should start |
| 923 // from here. | 926 // from here. |
| 924 NOTIFICATION_CHROME_END, | 927 NOTIFICATION_CHROME_END, |
| 925 }; | 928 }; |
| 926 | 929 |
| 927 } // namespace chrome | 930 } // namespace chrome |
| 928 | 931 |
| 929 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ | 932 #endif // CHROME_BROWSER_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |