| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This file describes various types used to describe and filter notifications | 5 // This file describes various types used to describe and filter notifications |
| 6 // that pass through the NotificationService. | 6 // that pass through the NotificationService. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_NOTIFICATION_TYPES_H__ | 8 #ifndef CHROME_COMMON_NOTIFICATION_TYPES_H__ |
| 9 #define CHROME_COMMON_NOTIFICATION_TYPES_H__ | 9 #define CHROME_COMMON_NOTIFICATION_TYPES_H__ |
| 10 | 10 |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 NOTIFY_URL_REQUEST_CONTEXT_RELEASED, | 470 NOTIFY_URL_REQUEST_CONTEXT_RELEASED, |
| 471 | 471 |
| 472 // Sent when WM_ENDSESSION has been received, after the browsers have been | 472 // Sent when WM_ENDSESSION has been received, after the browsers have been |
| 473 // closed but before browser process has been shutdown. The source/details | 473 // closed but before browser process has been shutdown. The source/details |
| 474 // are all source and no details. | 474 // are all source and no details. |
| 475 NOTIFY_SESSION_END, | 475 NOTIFY_SESSION_END, |
| 476 | 476 |
| 477 // Personalization ----------------------------------------------------------- | 477 // Personalization ----------------------------------------------------------- |
| 478 NOTIFY_PERSONALIZATION, | 478 NOTIFY_PERSONALIZATION, |
| 479 | 479 |
| 480 // 3D ---------------------------------------------------------------------- |
| 481 |
| 482 // When the user toggles the 3D button. The new state will be in |
| 483 // g_threedee_enabled declared in command_updater.h |
| 484 NOTIFY_THREEDEE_TOGGLED, |
| 485 |
| 480 // Count (must be last) ------------------------------------------------------ | 486 // Count (must be last) ------------------------------------------------------ |
| 481 // Used to determine the number of notification types. Not valid as | 487 // Used to determine the number of notification types. Not valid as |
| 482 // a type parameter when registering for or posting notifications. | 488 // a type parameter when registering for or posting notifications. |
| 483 NOTIFICATION_TYPE_COUNT | 489 NOTIFICATION_TYPE_COUNT |
| 484 }; | 490 }; |
| 485 | 491 |
| 486 #endif // CHROME_COMMON_NOTIFICATION_TYPES_H__ | 492 #endif // CHROME_COMMON_NOTIFICATION_TYPES_H__ |
| 487 | 493 |
| OLD | NEW |