| 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 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 | 7 |
| 8 // This file describes various types used to describe and filter notifications | 8 // This file describes various types used to describe and filter notifications |
| 9 // that pass through the NotificationService. | 9 // that pass through the NotificationService. |
| 10 // | 10 // |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 // or not an editable node was focused. | 172 // or not an editable node was focused. |
| 173 NOTIFICATION_FOCUS_CHANGED_IN_PAGE, | 173 NOTIFICATION_FOCUS_CHANGED_IN_PAGE, |
| 174 | 174 |
| 175 // Notification from WebContents that we have received a response from the | 175 // Notification from WebContents that we have received a response from the |
| 176 // renderer in response to a dom automation controller action. The source is | 176 // renderer in response to a dom automation controller action. The source is |
| 177 // the RenderViewHost, and the details is a string with the response. | 177 // the RenderViewHost, and the details is a string with the response. |
| 178 NOTIFICATION_DOM_OPERATION_RESPONSE, | 178 NOTIFICATION_DOM_OPERATION_RESPONSE, |
| 179 | 179 |
| 180 // Custom notifications used by the embedder should start from here. | 180 // Custom notifications used by the embedder should start from here. |
| 181 NOTIFICATION_CONTENT_END, | 181 NOTIFICATION_CONTENT_END, |
| 182 |
| 183 NOTIFICATION_PRINT_SUBFRAME_BEGIN, |
| 182 }; | 184 }; |
| 183 | 185 |
| 184 } // namespace content | 186 } // namespace content |
| 185 | 187 |
| 186 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ | 188 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ |
| OLD | NEW |