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 CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ |
6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ | 6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 // This file describes various types used to describe and filter notifications | 9 // This file describes various types used to describe and filter notifications |
10 // that pass through the NotificationService. | 10 // that pass through the NotificationService. |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
415 | 415 |
416 // Sent before the repost form warning is brought up. | 416 // Sent before the repost form warning is brought up. |
417 // The source is a NavigationController. | 417 // The source is a NavigationController. |
418 NOTIFICATION_REPOST_WARNING_SHOWN, | 418 NOTIFICATION_REPOST_WARNING_SHOWN, |
419 | 419 |
420 // Sent when the zoom level changes. The source is the HostZoomMap. The | 420 // Sent when the zoom level changes. The source is the HostZoomMap. The |
421 // details is a string of the hostname for which the zoom changed. In case | 421 // details is a string of the hostname for which the zoom changed. In case |
422 // of a temporary zoom level change, the details is an empty string. | 422 // of a temporary zoom level change, the details is an empty string. |
423 NOTIFICATION_ZOOM_LEVEL_CHANGED, | 423 NOTIFICATION_ZOOM_LEVEL_CHANGED, |
424 | 424 |
425 // Sent when a DOMStorageNamespace is created. | |
jochen (gone - plz use gerrit)
2011/12/13 13:47:32
please say what the Source and the Details will be
marja
2012/01/11 15:17:53
Done, and fixed this so that it's only sent for se
| |
426 NOTIFICATION_DOM_STORAGE_NAMESPACE_CREATED, | |
427 | |
425 // Custom notifications used by the embedder should start from here. | 428 // Custom notifications used by the embedder should start from here. |
426 NOTIFICATION_CONTENT_END, | 429 NOTIFICATION_CONTENT_END, |
427 }; | 430 }; |
428 | 431 |
429 } // namespace content | 432 } // namespace content |
430 | 433 |
431 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ | 434 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ |
OLD | NEW |