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