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

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

Issue 8587023: Add GAIA info to profile info cache (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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) 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/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 NOTIFICATION_KEYBOARD_VISIBLE_BOUNDS_CHANGED, 912 NOTIFICATION_KEYBOARD_VISIBLE_BOUNDS_CHANGED,
913 #endif 913 #endif
914 914
915 // Protocol Handler Registry ----------------------------------------------- 915 // Protocol Handler Registry -----------------------------------------------
916 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile. 916 // Sent when a ProtocolHandlerRegistry is changed. The source is the profile.
917 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED, 917 NOTIFICATION_PROTOCOL_HANDLER_REGISTRY_CHANGED,
918 918
919 // Sent when the cached profile info has changed. 919 // Sent when the cached profile info has changed.
920 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, 920 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED,
921 921
922 // Sent when the cached profile has finished writing a profile picture to
923 // disk.
924 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED,
925
922 // Sent when the browser enters or exits fullscreen mode. 926 // Sent when the browser enters or exits fullscreen mode.
923 NOTIFICATION_FULLSCREEN_CHANGED, 927 NOTIFICATION_FULLSCREEN_CHANGED,
924 928
925 // Sent by the PluginPrefs when there is a change of plugin enable/disable 929 // Sent by the PluginPrefs when there is a change of plugin enable/disable
926 // status. The source is the profile. 930 // status. The source is the profile.
927 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, 931 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED,
928 932
929 // Panels Notifications. The Panels are small browser windows near the bottom 933 // Panels Notifications. The Panels are small browser windows near the bottom
930 // of the screen. 934 // of the screen.
931 // Sent when all nonblocking bounds animations are finished across panels. 935 // Sent when all nonblocking bounds animations are finished across panels.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 // Currently only Content and Chrome define and use notifications. 976 // Currently only Content and Chrome define and use notifications.
973 // Custom notifications not belonging to Content and Chrome should start 977 // Custom notifications not belonging to Content and Chrome should start
974 // from here. 978 // from here.
975 NOTIFICATION_CHROME_END, 979 NOTIFICATION_CHROME_END,
976 }; 980 };
977 981
978 } // namespace chrome 982 } // namespace chrome
979 983
980 984
981 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 985 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698