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

Side by Side Diff: chrome/common/notification_type.h

Issue 1803006: Re-land 1752007: Send out notifications when logins are changed (Closed)
Patch Set: Created 10 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
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_NOTIFICATION_TYPE_H_ 5 #ifndef CHROME_COMMON_NOTIFICATION_TYPE_H_
6 #define CHROME_COMMON_NOTIFICATION_TYPE_H_ 6 #define CHROME_COMMON_NOTIFICATION_TYPE_H_
7 7
8 // This file describes various types used to describe and filter notifications 8 // This file describes various types used to describe and filter notifications
9 // that pass through the NotificationService. 9 // that pass through the NotificationService.
10 // 10 //
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 // Sent before the repost form warning is brought up. 957 // Sent before the repost form warning is brought up.
958 // The source is a NavigationController. 958 // The source is a NavigationController.
959 REPOST_WARNING_SHOWN, 959 REPOST_WARNING_SHOWN,
960 960
961 #if defined(TOOLKIT_VIEWS) 961 #if defined(TOOLKIT_VIEWS)
962 // Sent when a bookmark's context menu is shown. Used to notify 962 // Sent when a bookmark's context menu is shown. Used to notify
963 // tests that the context menu has been created and shown. 963 // tests that the context menu has been created and shown.
964 BOOKMARK_CONTEXT_MENU_SHOWN, 964 BOOKMARK_CONTEXT_MENU_SHOWN,
965 #endif 965 #endif
966 966
967 // Password Store ----------------------------------------------------------
968 // This notification is sent whenenever login entries stored in the password
969 // store are changed. The detail of this notification is a list of changes
970 // represented by a vector of PasswordStoreChange. Each change includes a
971 // change type (ADD, UPDATE, or REMOVE) as well as the
972 // |webkit_glue::PasswordForm|s that were affected.
973 LOGINS_CHANGED,
974
967 // Count (must be last) ---------------------------------------------------- 975 // Count (must be last) ----------------------------------------------------
968 // Used to determine the number of notification types. Not valid as 976 // Used to determine the number of notification types. Not valid as
969 // a type parameter when registering for or posting notifications. 977 // a type parameter when registering for or posting notifications.
970 NOTIFICATION_TYPE_COUNT 978 NOTIFICATION_TYPE_COUNT
971 }; 979 };
972 980
973 // TODO(erg): Our notification system relies on implicit conversion. 981 // TODO(erg): Our notification system relies on implicit conversion.
974 NotificationType(Type v) : value(v) {} // NOLINT 982 NotificationType(Type v) : value(v) {} // NOLINT
975 983
976 bool operator==(NotificationType t) const { return value == t.value; } 984 bool operator==(NotificationType t) const { return value == t.value; }
977 bool operator!=(NotificationType t) const { return value != t.value; } 985 bool operator!=(NotificationType t) const { return value != t.value; }
978 986
979 // Comparison to explicit enum values. 987 // Comparison to explicit enum values.
980 bool operator==(Type v) const { return value == v; } 988 bool operator==(Type v) const { return value == v; }
981 bool operator!=(Type v) const { return value != v; } 989 bool operator!=(Type v) const { return value != v; }
982 990
983 Type value; 991 Type value;
984 }; 992 };
985 993
986 inline bool operator==(NotificationType::Type a, NotificationType b) { 994 inline bool operator==(NotificationType::Type a, NotificationType b) {
987 return a == b.value; 995 return a == b.value;
988 } 996 }
989 inline bool operator!=(NotificationType::Type a, NotificationType b) { 997 inline bool operator!=(NotificationType::Type a, NotificationType b) {
990 return a != b.value; 998 return a != b.value;
991 } 999 }
992 1000
993 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_ 1001 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698