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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 NOTIFICATION_APP_INSTALLED_TO_NTP, | 861 NOTIFICATION_APP_INSTALLED_TO_NTP, |
862 | 862 |
863 #if defined(OS_CHROMEOS) | 863 #if defined(OS_CHROMEOS) |
864 // Sent when WebSocketProxy started accepting connections. | 864 // Sent when WebSocketProxy started accepting connections. |
865 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, | 865 NOTIFICATION_WEB_SOCKET_PROXY_STARTED, |
866 #endif | 866 #endif |
867 | 867 |
868 // Sent when a new web store promo has been loaded. | 868 // Sent when a new web store promo has been loaded. |
869 NOTIFICATION_WEB_STORE_PROMO_LOADED, | 869 NOTIFICATION_WEB_STORE_PROMO_LOADED, |
870 | 870 |
871 #if defined(TOUCH_UI) | 871 #if defined(USE_VIRTUAL_KEYBOARD) |
872 // Sent when the keyboard visibility has changed. Used for testing purposes | 872 // Sent when the keyboard visibility has changed. Used for testing purposes |
873 // only. Source is the keyboard manager, and Details is a boolean indicating | 873 // only. Source is the keyboard manager, and Details is a boolean indicating |
874 // whether the keyboard is visibile or not. | 874 // whether the keyboard is visibile or not. |
875 NOTIFICATION_KEYBOARD_VISIBILITY_CHANGED, | 875 NOTIFICATION_KEYBOARD_VISIBILITY_CHANGED, |
876 | 876 |
877 // Sent when an API for hiding the keyboard is invoked from JavaScript code. | 877 // Sent when an API for hiding the keyboard is invoked from JavaScript code. |
878 NOTIFICATION_HIDE_KEYBOARD_INVOKED, | 878 NOTIFICATION_HIDE_KEYBOARD_INVOKED, |
879 | 879 |
880 // Sent when an API for set height of the keyboard is invoked from | 880 // Sent when an API for set height of the keyboard is invoked from |
881 // JavaScript code. | 881 // JavaScript code. |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 // Currently only Content and Chrome define and use notifications. | 916 // Currently only Content and Chrome define and use notifications. |
917 // Custom notifications not belonging to Content and Chrome should start | 917 // Custom notifications not belonging to Content and Chrome should start |
918 // from here. | 918 // from here. |
919 NOTIFICATION_CHROME_END, | 919 NOTIFICATION_CHROME_END, |
920 }; | 920 }; |
921 | 921 |
922 } // namespace chrome | 922 } // namespace chrome |
923 | 923 |
924 | 924 |
925 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 925 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
OLD | NEW |