| OLD | NEW |
| 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 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "content/public/browser/notification_types.h" | 9 #include "content/public/browser/notification_types.h" |
| 10 | 10 |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, | 1241 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, |
| 1242 | 1242 |
| 1243 // Blocked content. | 1243 // Blocked content. |
| 1244 // Sent when content changes to or from the blocked state in | 1244 // Sent when content changes to or from the blocked state in |
| 1245 // BlockedContentTabHelper. | 1245 // BlockedContentTabHelper. |
| 1246 // The source is the WebContents of the blocked content and details | 1246 // The source is the WebContents of the blocked content and details |
| 1247 // is a boolean: true if the content is entering the blocked state, false | 1247 // is a boolean: true if the content is entering the blocked state, false |
| 1248 // if it is leaving. | 1248 // if it is leaving. |
| 1249 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, | 1249 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, |
| 1250 | 1250 |
| 1251 // SearchViewController. | |
| 1252 // Sent when animations initiated by search view controller complete. | |
| 1253 // The source is the SearchViewController whose animation is finished. | |
| 1254 // No details. | |
| 1255 NOTIFICATION_SEARCH_VIEW_CONTROLLER_ANIMATION_FINISHED, | |
| 1256 | |
| 1257 // Note:- | 1251 // Note:- |
| 1258 // Currently only Content and Chrome define and use notifications. | 1252 // Currently only Content and Chrome define and use notifications. |
| 1259 // Custom notifications not belonging to Content and Chrome should start | 1253 // Custom notifications not belonging to Content and Chrome should start |
| 1260 // from here. | 1254 // from here. |
| 1261 NOTIFICATION_CHROME_END, | 1255 NOTIFICATION_CHROME_END, |
| 1262 }; | 1256 }; |
| 1263 | 1257 |
| 1264 } // namespace chrome | 1258 } // namespace chrome |
| 1265 | 1259 |
| 1266 | 1260 |
| 1267 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1261 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |