Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: chrome/common/notification_type.h

Issue 504051: Relanding the language detection. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 after a call to RenderViewHost::DeterminePageLanguage. The details 226 // Sent when the language (English, French...) for a page has been detected.
227 // are Details<std::string> and the source is Source<RenderViewHost>. 227 // The details Details<std::string> contain the ISO 639-1 language code and
228 // the source is Source<RenderViewHost>.
228 TAB_LANGUAGE_DETERMINED, 229 TAB_LANGUAGE_DETERMINED,
229 230
230 // Send after the code is run in specified tab. 231 // Send after the code is run in specified tab.
231 TAB_CODE_EXECUTED, 232 TAB_CODE_EXECUTED,
232 233
233 // The user has changed the browser theme. 234 // The user has changed the browser theme.
234 BROWSER_THEME_CHANGED, 235 BROWSER_THEME_CHANGED,
235 236
236 // Sent when the renderer returns focus to the browser, as part of focus 237 // Sent when the renderer returns focus to the browser, as part of focus
237 // traversal. The source is the browser, there are no details. 238 // traversal. The source is the browser, there are no details.
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 }; 812 };
812 813
813 inline bool operator==(NotificationType::Type a, NotificationType b) { 814 inline bool operator==(NotificationType::Type a, NotificationType b) {
814 return a == b.value; 815 return a == b.value;
815 } 816 }
816 inline bool operator!=(NotificationType::Type a, NotificationType b) { 817 inline bool operator!=(NotificationType::Type a, NotificationType b) {
817 return a != b.value; 818 return a != b.value;
818 } 819 }
819 820
820 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_ 821 #endif // CHROME_COMMON_NOTIFICATION_TYPE_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698