OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "content/common/content_notification_types.h" | 9 #include "content/common/content_notification_types.h" |
10 | 10 |
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 NOTIFICATION_INSTANT_SUPPORT_DETERMINED, | 828 NOTIFICATION_INSTANT_SUPPORT_DETERMINED, |
829 | 829 |
830 // Password Store ---------------------------------------------------------- | 830 // Password Store ---------------------------------------------------------- |
831 // This notification is sent whenenever login entries stored in the password | 831 // This notification is sent whenenever login entries stored in the password |
832 // store are changed. The detail of this notification is a list of changes | 832 // store are changed. The detail of this notification is a list of changes |
833 // represented by a vector of PasswordStoreChange. Each change includes a | 833 // represented by a vector of PasswordStoreChange. Each change includes a |
834 // change type (ADD, UPDATE, or REMOVE) as well as the | 834 // change type (ADD, UPDATE, or REMOVE) as well as the |
835 // |webkit_glue::PasswordForm|s that were affected. | 835 // |webkit_glue::PasswordForm|s that were affected. |
836 NOTIFICATION_LOGINS_CHANGED, | 836 NOTIFICATION_LOGINS_CHANGED, |
837 | 837 |
| 838 // Sent when an import process has ended. |
| 839 NOTIFICATION_IMPORT_FINISHED, |
| 840 |
838 // Sent when the applications in the NTP app launcher have been reordered. | 841 // Sent when the applications in the NTP app launcher have been reordered. |
839 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED, | 842 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED, |
840 | 843 |
841 #if defined(OS_CHROMEOS) | 844 #if defined(OS_CHROMEOS) |
842 // Sent when WebSocketProxy started accepting connections. | 845 // Sent when WebSocketProxy started accepting connections. |
843 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, | 846 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, |
844 #endif | 847 #endif |
845 | 848 |
846 // Sent when a new web store promo has been loaded. | 849 // Sent when a new web store promo has been loaded. |
847 NOTIFICATION_WEB_STORE_PROMO_LOADED, | 850 NOTIFICATION_WEB_STORE_PROMO_LOADED, |
(...skipping 22 matching lines...) Expand all Loading... |
870 // Currently only Content and Chrome define and use notifications. | 873 // Currently only Content and Chrome define and use notifications. |
871 // Custom notifications not belonging to Content and Chrome should start | 874 // Custom notifications not belonging to Content and Chrome should start |
872 // from here. | 875 // from here. |
873 NOTIFICATION_CHROME_END, | 876 NOTIFICATION_CHROME_END, |
874 }; | 877 }; |
875 | 878 |
876 } // namespace chrome | 879 } // namespace chrome |
877 | 880 |
878 | 881 |
879 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 882 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |