Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: chrome/browser/chrome_notification_types.h

Issue 211543008: Show a modified outdated upgrade Bubble for non-enterprise users without auto-update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Shot in the dark to try and prevent Mac crashes... Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/browser_commands.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/browser_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698