OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_NOTIFICATION_TYPE_H_ | 5 #ifndef CHROME_COMMON_NOTIFICATION_TYPE_H_ |
6 #define CHROME_COMMON_NOTIFICATION_TYPE_H_ | 6 #define CHROME_COMMON_NOTIFICATION_TYPE_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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 #endif | 216 #endif |
217 | 217 |
218 // Indicates that a top window has been closed. The source is the HWND | 218 // Indicates that a top window has been closed. The source is the HWND |
219 // that was closed, no details are expected. | 219 // that was closed, no details are expected. |
220 WINDOW_CLOSED, | 220 WINDOW_CLOSED, |
221 | 221 |
222 // Sent when an info bubble has been created but not yet shown. The source | 222 // Sent when an info bubble has been created but not yet shown. The source |
223 // is the InfoBubble. | 223 // is the InfoBubble. |
224 INFO_BUBBLE_CREATED, | 224 INFO_BUBBLE_CREATED, |
225 | 225 |
226 // Sent when the language (English, French...) for a page has been detected. | 226 // Sent after a call to RenderViewHost::DeterminePageLanguage. The details |
227 // The details Details<std::string> contain the ISO 639-1 language code and | 227 // are Details<std::string> and the source is Source<RenderViewHost>. |
228 // the source is Source<RenderViewHost>. | |
229 TAB_LANGUAGE_DETERMINED, | 228 TAB_LANGUAGE_DETERMINED, |
230 | 229 |
231 // Send after the code is run in specified tab. | 230 // Send after the code is run in specified tab. |
232 TAB_CODE_EXECUTED, | 231 TAB_CODE_EXECUTED, |
233 | 232 |
234 // The user has changed the browser theme. | 233 // The user has changed the browser theme. |
235 BROWSER_THEME_CHANGED, | 234 BROWSER_THEME_CHANGED, |
236 | 235 |
237 // Sent when the renderer returns focus to the browser, as part of focus | 236 // Sent when the renderer returns focus to the browser, as part of focus |
238 // traversal. The source is the browser, there are no details. | 237 // traversal. The source is the browser, there are no details. |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 }; | 811 }; |
813 | 812 |
814 inline bool operator==(NotificationType::Type a, NotificationType b) { | 813 inline bool operator==(NotificationType::Type a, NotificationType b) { |
815 return a == b.value; | 814 return a == b.value; |
816 } | 815 } |
817 inline bool operator!=(NotificationType::Type a, NotificationType b) { | 816 inline bool operator!=(NotificationType::Type a, NotificationType b) { |
818 return a != b.value; | 817 return a != b.value; |
819 } | 818 } |
820 | 819 |
821 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_ | 820 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_ |
OLD | NEW |