| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1233 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, | 1233 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, |
| 1234 | 1234 |
| 1235 // Blocked content. | 1235 // Blocked content. |
| 1236 // Sent when content changes to or from the blocked state in | 1236 // Sent when content changes to or from the blocked state in |
| 1237 // BlockedContentTabHelper. | 1237 // BlockedContentTabHelper. |
| 1238 // The source is the WebContents of the blocked content and details | 1238 // The source is the WebContents of the blocked content and details |
| 1239 // is a boolean: true if the content is entering the blocked state, false | 1239 // is a boolean: true if the content is entering the blocked state, false |
| 1240 // if it is leaving. | 1240 // if it is leaving. |
| 1241 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, | 1241 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, |
| 1242 | 1242 |
| 1243 // SearchViewController. | |
| 1244 // Sent when animations initiated by search view controller complete. | |
| 1245 // The source is the SearchViewController whose animation is finished. | |
| 1246 // No details. | |
| 1247 NOTIFICATION_SEARCH_VIEW_CONTROLLER_ANIMATION_FINISHED, | |
| 1248 | |
| 1249 // Note:- | 1243 // Note:- |
| 1250 // Currently only Content and Chrome define and use notifications. | 1244 // Currently only Content and Chrome define and use notifications. |
| 1251 // Custom notifications not belonging to Content and Chrome should start | 1245 // Custom notifications not belonging to Content and Chrome should start |
| 1252 // from here. | 1246 // from here. |
| 1253 NOTIFICATION_CHROME_END, | 1247 NOTIFICATION_CHROME_END, |
| 1254 }; | 1248 }; |
| 1255 | 1249 |
| 1256 } // namespace chrome | 1250 } // namespace chrome |
| 1257 | 1251 |
| 1258 | 1252 |
| 1259 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1253 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |