| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_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/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
| 10 | 10 |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 | 855 |
| 856 // Sent when webui lock screen is ready. | 856 // Sent when webui lock screen is ready. |
| 857 NOTIFICATION_LOCK_WEBUI_READY, | 857 NOTIFICATION_LOCK_WEBUI_READY, |
| 858 | 858 |
| 859 // Sent when webui login screen is ready and gaia iframe has loaded. | 859 // Sent when webui login screen is ready and gaia iframe has loaded. |
| 860 NOTIFICATION_LOGIN_WEBUI_READY, | 860 NOTIFICATION_LOGIN_WEBUI_READY, |
| 861 | 861 |
| 862 // Sent when the user images on the WebUI login screen have all been loaded. | 862 // Sent when the user images on the WebUI login screen have all been loaded. |
| 863 NOTIFICATION_LOGIN_USER_IMAGES_LOADED, | 863 NOTIFICATION_LOGIN_USER_IMAGES_LOADED, |
| 864 | 864 |
| 865 // Sent when the thumbnail of user selected wallpaper generated and saved |
| 866 // to file system successfully. |
| 867 NOTIFICATION_LOGIN_USER_WALLPAPER_THUMBNAIL_UPDATED, |
| 868 |
| 865 // Sent when proxy dialog is closed. | 869 // Sent when proxy dialog is closed. |
| 866 NOTIFICATION_LOGIN_PROXY_CHANGED, | 870 NOTIFICATION_LOGIN_PROXY_CHANGED, |
| 867 | 871 |
| 868 // Sent when a network error message is displayed on the WebUI login screen. | 872 // Sent when a network error message is displayed on the WebUI login screen. |
| 869 NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN, | 873 NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN, |
| 870 | 874 |
| 871 // Sent when a panel state changed. | 875 // Sent when a panel state changed. |
| 872 NOTIFICATION_PANEL_STATE_CHANGED, | 876 NOTIFICATION_PANEL_STATE_CHANGED, |
| 873 | 877 |
| 874 // Sent when the window manager's layout mode has changed. | 878 // Sent when the window manager's layout mode has changed. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 // Currently only Content and Chrome define and use notifications. | 1095 // Currently only Content and Chrome define and use notifications. |
| 1092 // Custom notifications not belonging to Content and Chrome should start | 1096 // Custom notifications not belonging to Content and Chrome should start |
| 1093 // from here. | 1097 // from here. |
| 1094 NOTIFICATION_CHROME_END, | 1098 NOTIFICATION_CHROME_END, |
| 1095 }; | 1099 }; |
| 1096 | 1100 |
| 1097 } // namespace chrome | 1101 } // namespace chrome |
| 1098 | 1102 |
| 1099 | 1103 |
| 1100 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1104 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |