Chromium Code Reviews| 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 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1244 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, | 1244 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, |
| 1245 | 1245 |
| 1246 // Blocked content. | 1246 // Blocked content. |
| 1247 // Sent when content changes to or from the blocked state in | 1247 // Sent when content changes to or from the blocked state in |
| 1248 // BlockedContentTabHelper. | 1248 // BlockedContentTabHelper. |
| 1249 // The source is the TabContents of the blocked content and details | 1249 // The source is the TabContents of the blocked content and details |
| 1250 // is a boolean: true if the content is entering the blocked state, false | 1250 // is a boolean: true if the content is entering the blocked state, false |
| 1251 // if it is leaving. | 1251 // if it is leaving. |
| 1252 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, | 1252 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, |
| 1253 | 1253 |
| 1254 // SearchViewController. | |
| 1255 // Sent when animations initiated by search view controller complete. | |
| 1256 // The source is the SearchViewController who's animation is finished. | |
|
kuan
2012/09/13 20:16:51
nit: s/who's/whose/
| |
| 1257 // No details. | |
| 1258 NOTIFICATION_SEARCH_VIEW_CONTROLLER_ANIMATION_FINISHED, | |
| 1259 | |
| 1254 // Note:- | 1260 // Note:- |
| 1255 // Currently only Content and Chrome define and use notifications. | 1261 // Currently only Content and Chrome define and use notifications. |
| 1256 // Custom notifications not belonging to Content and Chrome should start | 1262 // Custom notifications not belonging to Content and Chrome should start |
| 1257 // from here. | 1263 // from here. |
| 1258 NOTIFICATION_CHROME_END, | 1264 NOTIFICATION_CHROME_END, |
| 1259 }; | 1265 }; |
| 1260 | 1266 |
| 1261 } // namespace chrome | 1267 } // namespace chrome |
| 1262 | 1268 |
| 1263 | 1269 |
| 1264 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ | 1270 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ |
| OLD | NEW |