| Index: chrome/common/notification_type.h
|
| diff --git a/chrome/common/notification_type.h b/chrome/common/notification_type.h
|
| index c162cfc8b38f402f3f4a66e18671923fdb47783a..4ea338d0b02a7a43842ab3e3a0fd4b0db0fab1e1 100644
|
| --- a/chrome/common/notification_type.h
|
| +++ b/chrome/common/notification_type.h
|
| @@ -743,16 +743,19 @@ class NotificationType {
|
|
|
| // Privacy Blacklist -------------------------------------------------------
|
|
|
| - // Sent when the blacklist manager successfully finishes reading
|
| - // a blacklist. The details are a Blacklist, and the source is a Profile.
|
| + // Sent on the UI thread when the blacklist manager successfully finishes
|
| + // reading a blacklist. There are no details, and the source is a Profile.
|
| + // The new blacklist is available on the IO thread.
|
| BLACKLIST_MANAGER_BLACKLIST_READ_FINISHED,
|
|
|
| - // Sent when the blacklist manager encounters an error. The details are
|
| - // a string16 (error message), and the source is a Profile.
|
| + // Sent on the UI thread when the blacklist manager encounters an error.
|
| + // The details are a string16 (error message), and the source is a Profile.
|
| BLACKLIST_MANAGER_ERROR,
|
|
|
| - // Sent by the resource dispatcher host when a resource is blocked.
|
| - BLACKLIST_BLOCKED_RESOURCE,
|
| + // Sent on the IO thread when a non-visual resource (like a cookie)
|
| + // is blocked by a privacy blacklist. The details are a const URLRequest,
|
| + // and the source is a const ChromeURLRequestContext.
|
| + BLACKLIST_NONVISUAL_RESOURCE_BLOCKED,
|
|
|
| // Debugging ---------------------------------------------------------------
|
|
|
|
|