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

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

Issue 8586009: Allow WebUI Tests to use preLoad in HtmlDialogUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 9 years 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_tests.gypi ('k') | chrome/test/base/js2gtest.js » ('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) 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 CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 5 #ifndef CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
7 #pragma once 7 #pragma once
8 8
9 #include "content/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 NOTIFICATION_TAB_SNAPSHOT_TAKEN, 64 NOTIFICATION_TAB_SNAPSHOT_TAKEN,
65 65
66 // The user has changed the browser theme. The source is a 66 // The user has changed the browser theme. The source is a
67 // Source<ThemeService>. There are no details. 67 // Source<ThemeService>. There are no details.
68 NOTIFICATION_BROWSER_THEME_CHANGED, 68 NOTIFICATION_BROWSER_THEME_CHANGED,
69 69
70 // Sent when the renderer returns focus to the browser, as part of focus 70 // Sent when the renderer returns focus to the browser, as part of focus
71 // traversal. The source is the browser, there are no details. 71 // traversal. The source is the browser, there are no details.
72 NOTIFICATION_FOCUS_RETURNED_TO_BROWSER, 72 NOTIFICATION_FOCUS_RETURNED_TO_BROWSER,
73 73
74 // Sent after an HtmlDialog dialog has been shown. The source is the dialog. 74 // Sent after an HtmlDialog dialog has been shown. The source is the
75 // dialog. The details is a Details<RenderViewHost> with a pointer to the RVH
76 // for the shown dialog.
75 NOTIFICATION_HTML_DIALOG_SHOWN, 77 NOTIFICATION_HTML_DIALOG_SHOWN,
76 78
77 // Application-modal dialogs ----------------------------------------------- 79 // Application-modal dialogs -----------------------------------------------
78 80
79 // Sent after an application-modal dialog has been shown. The source 81 // Sent after an application-modal dialog has been shown. The source
80 // is the dialog. 82 // is the dialog.
81 NOTIFICATION_APP_MODAL_DIALOG_SHOWN, 83 NOTIFICATION_APP_MODAL_DIALOG_SHOWN,
82 84
83 // This message is sent when a new InfoBar has been added to a 85 // This message is sent when a new InfoBar has been added to a
84 // InfoBarTabHelper. The source is a Source<InfoBarTabHelper> with a 86 // InfoBarTabHelper. The source is a Source<InfoBarTabHelper> with a
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 // Currently only Content and Chrome define and use notifications. 988 // Currently only Content and Chrome define and use notifications.
987 // Custom notifications not belonging to Content and Chrome should start 989 // Custom notifications not belonging to Content and Chrome should start
988 // from here. 990 // from here.
989 NOTIFICATION_CHROME_END, 991 NOTIFICATION_CHROME_END,
990 }; 992 };
991 993
992 } // namespace chrome 994 } // namespace chrome
993 995
994 996
995 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 997 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/base/js2gtest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698