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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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. | 838 // Sent when an import process has ended. |
839 NOTIFICATION_IMPORT_FINISHED, | 839 NOTIFICATION_IMPORT_FINISHED, |
840 | 840 |
841 // 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. |
842 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED, | 842 NOTIFICATION_EXTENSION_LAUNCHER_REORDERED, |
843 | 843 |
844 // Sent when an app is installed and an NTP has been shown. Source is the | |
845 // TabContents that was shown, and Details is the Extension which was | |
Rick Byers
2011/08/29 16:01:00
s/Extension/extension ID
Evan Stade
2011/08/29 19:07:20
Done.
| |
846 // installed. | |
847 NOTIFICATION_APP_INSTALLED_TO_NTP, | |
848 | |
844 #if defined(OS_CHROMEOS) | 849 #if defined(OS_CHROMEOS) |
845 // Sent when WebSocketProxy started accepting connections. | 850 // Sent when WebSocketProxy started accepting connections. |
846 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, | 851 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, |
847 #endif | 852 #endif |
848 | 853 |
849 // Sent when a new web store promo has been loaded. | 854 // Sent when a new web store promo has been loaded. |
850 NOTIFICATION_WEB_STORE_PROMO_LOADED, | 855 NOTIFICATION_WEB_STORE_PROMO_LOADED, |
851 | 856 |
852 #if defined(TOUCH_UI) | 857 #if defined(TOUCH_UI) |
853 // Sent when the keyboard visibility has changed. Used for testing purposes | 858 // Sent when the keyboard visibility has changed. Used for testing purposes |
(...skipping 27 matching lines...) Expand all Loading... | |
881 // Currently only Content and Chrome define and use notifications. | 886 // Currently only Content and Chrome define and use notifications. |
882 // Custom notifications not belonging to Content and Chrome should start | 887 // Custom notifications not belonging to Content and Chrome should start |
883 // from here. | 888 // from here. |
884 NOTIFICATION_CHROME_END, | 889 NOTIFICATION_CHROME_END, |
885 }; | 890 }; |
886 | 891 |
887 } // namespace chrome | 892 } // namespace chrome |
888 | 893 |
889 | 894 |
890 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 895 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |