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

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

Issue 10261011: Windowed mode mouse lock addded to fullscreen controller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac build bot errors 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 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 // Sent when the cached profile info has changed. 1048 // Sent when the cached profile info has changed.
1049 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED, 1049 NOTIFICATION_PROFILE_CACHED_INFO_CHANGED,
1050 1050
1051 // Sent when the cached profile has finished writing a profile picture to 1051 // Sent when the cached profile has finished writing a profile picture to
1052 // disk. 1052 // disk.
1053 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED, 1053 NOTIFICATION_PROFILE_CACHE_PICTURE_SAVED,
1054 1054
1055 // Sent when the browser enters or exits fullscreen mode. 1055 // Sent when the browser enters or exits fullscreen mode.
1056 NOTIFICATION_FULLSCREEN_CHANGED, 1056 NOTIFICATION_FULLSCREEN_CHANGED,
1057 1057
1058 // Sent when the browser changes, confirms, or denies mouse lock mode.
sky 2012/05/21 15:18:38 Document what the source/details are.
scheib 2012/05/21 20:29:13 Done.
1059 NOTIFICATION_MOUSE_LOCK_CHANGED,
1060
1058 // Sent by the PluginPrefs when there is a change of plugin enable/disable 1061 // Sent by the PluginPrefs when there is a change of plugin enable/disable
1059 // status. The source is the profile. 1062 // status. The source is the profile.
1060 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, 1063 NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED,
1061 1064
1062 // Panels Notifications. The Panels are small browser windows near the bottom 1065 // Panels Notifications. The Panels are small browser windows near the bottom
1063 // of the screen. 1066 // of the screen.
1064 // Sent when all nonblocking bounds animations are finished across panels. 1067 // Sent when all nonblocking bounds animations are finished across panels.
1065 // Used only in unit testing. 1068 // Used only in unit testing.
1066 NOTIFICATION_PANEL_BOUNDS_ANIMATIONS_FINISHED, 1069 NOTIFICATION_PANEL_BOUNDS_ANIMATIONS_FINISHED,
1067 1070
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 // Currently only Content and Chrome define and use notifications. 1129 // Currently only Content and Chrome define and use notifications.
1127 // Custom notifications not belonging to Content and Chrome should start 1130 // Custom notifications not belonging to Content and Chrome should start
1128 // from here. 1131 // from here.
1129 NOTIFICATION_CHROME_END, 1132 NOTIFICATION_CHROME_END,
1130 }; 1133 };
1131 1134
1132 } // namespace chrome 1135 } // namespace chrome
1133 1136
1134 1137
1135 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1138 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698