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

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

Issue 11824050: InstantExtended: Committed NTP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 7 years, 10 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 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 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 // Send when a context menu is closed. 1094 // Send when a context menu is closed.
1095 NOTIFICATION_RENDER_VIEW_CONTEXT_MENU_CLOSED, 1095 NOTIFICATION_RENDER_VIEW_CONTEXT_MENU_CLOSED,
1096 1096
1097 // Sent each time the InstantController is updated. 1097 // Sent each time the InstantController is updated.
1098 NOTIFICATION_INSTANT_CONTROLLER_UPDATED, 1098 NOTIFICATION_INSTANT_CONTROLLER_UPDATED,
1099 1099
1100 // Sent when an Instant preview is committed. The Source is the WebContents 1100 // Sent when an Instant preview is committed. The Source is the WebContents
1101 // containing the committed preview. 1101 // containing the committed preview.
1102 NOTIFICATION_INSTANT_COMMITTED, 1102 NOTIFICATION_INSTANT_COMMITTED,
1103 1103
1104 // Sent when the Instant loader determines whether the page supports the 1104 // Sent when the Instant Controller determines whether the overlay supports
1105 // the Instant API or not.
1106 NOTIFICATION_INSTANT_OVERLAY_SUPPORT_DETERMINED,
1107
1108 // Sent when the Instant Controller determines whether the ntp supports the
sreeram 2013/02/07 21:17:50 ntp -> NTP
samarth 2013/02/07 22:11:55 Done.
1105 // Instant API or not. 1109 // Instant API or not.
1106 NOTIFICATION_INSTANT_SUPPORT_DETERMINED, 1110 NOTIFICATION_INSTANT_NTP_SUPPORT_DETERMINED,
1107 1111
1108 // Sent when the CaptivePortalService checks if we're behind a captive portal. 1112 // Sent when the CaptivePortalService checks if we're behind a captive portal.
1109 // The Source is the Profile the CaptivePortalService belongs to, and the 1113 // The Source is the Profile the CaptivePortalService belongs to, and the
1110 // Details are a Details<CaptivePortalService::CheckResults>. 1114 // Details are a Details<CaptivePortalService::CheckResults>.
1111 NOTIFICATION_CAPTIVE_PORTAL_CHECK_RESULT, 1115 NOTIFICATION_CAPTIVE_PORTAL_CHECK_RESULT,
1112 1116
1113 // Password Store ---------------------------------------------------------- 1117 // Password Store ----------------------------------------------------------
1114 // This notification is sent whenenever login entries stored in the password 1118 // This notification is sent whenenever login entries stored in the password
1115 // store are changed. The detail of this notification is a list of changes 1119 // store are changed. The detail of this notification is a list of changes
1116 // represented by a vector of PasswordStoreChange. Each change includes a 1120 // represented by a vector of PasswordStoreChange. Each change includes a
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 // Currently only Content and Chrome define and use notifications. 1247 // Currently only Content and Chrome define and use notifications.
1244 // Custom notifications not belonging to Content and Chrome should start 1248 // Custom notifications not belonging to Content and Chrome should start
1245 // from here. 1249 // from here.
1246 NOTIFICATION_CHROME_END, 1250 NOTIFICATION_CHROME_END,
1247 }; 1251 };
1248 1252
1249 } // namespace chrome 1253 } // namespace chrome
1250 1254
1251 1255
1252 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1256 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698