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

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

Issue 10375010: Implement user selected wallpaper feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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
OLDNEW
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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 844
845 // Sent when webui lock screen is ready. 845 // Sent when webui lock screen is ready.
846 NOTIFICATION_LOCK_WEBUI_READY, 846 NOTIFICATION_LOCK_WEBUI_READY,
847 847
848 // Sent when webui login screen is ready and gaia iframe has loaded. 848 // Sent when webui login screen is ready and gaia iframe has loaded.
849 NOTIFICATION_LOGIN_WEBUI_READY, 849 NOTIFICATION_LOGIN_WEBUI_READY,
850 850
851 // Sent when the user images on the WebUI login screen have all been loaded. 851 // Sent when the user images on the WebUI login screen have all been loaded.
852 NOTIFICATION_LOGIN_USER_IMAGES_LOADED, 852 NOTIFICATION_LOGIN_USER_IMAGES_LOADED,
853 853
854 // Sent when the thumbnail of user selected wallpaper generated and saved
855 // to file system successfully.
856 NOTIFICATION_LOGIN_USER_WALLPAPER_THUMBNAIL_UPDATED,
Ben Goodger (Google) 2012/05/07 15:36:25 Can you do this without notifications? Notificatio
bshe 2012/05/09 18:51:54 I use a delegate to replace the notification. Not
857
854 // Sent when proxy dialog is closed. 858 // Sent when proxy dialog is closed.
855 NOTIFICATION_LOGIN_PROXY_CHANGED, 859 NOTIFICATION_LOGIN_PROXY_CHANGED,
856 860
857 // Sent when a network error message is displayed on the WebUI login screen. 861 // Sent when a network error message is displayed on the WebUI login screen.
858 NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN, 862 NOTIFICATION_LOGIN_NETWORK_ERROR_SHOWN,
859 863
860 // Sent when a panel state changed. 864 // Sent when a panel state changed.
861 NOTIFICATION_PANEL_STATE_CHANGED, 865 NOTIFICATION_PANEL_STATE_CHANGED,
862 866
863 // Sent when the window manager's layout mode has changed. 867 // Sent when the window manager's layout mode has changed.
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 // Currently only Content and Chrome define and use notifications. 1084 // Currently only Content and Chrome define and use notifications.
1081 // Custom notifications not belonging to Content and Chrome should start 1085 // Custom notifications not belonging to Content and Chrome should start
1082 // from here. 1086 // from here.
1083 NOTIFICATION_CHROME_END, 1087 NOTIFICATION_CHROME_END,
1084 }; 1088 };
1085 1089
1086 } // namespace chrome 1090 } // namespace chrome
1087 1091
1088 1092
1089 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1093 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698