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

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

Issue 11413018: alternate ntp: implement searchbox api for instant overlay to adopt themes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed scott's comments Created 8 years, 1 month 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
OLDNEW
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 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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED, 1237 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED,
1238 1238
1239 // Blocked content. 1239 // Blocked content.
1240 // Sent when content changes to or from the blocked state in 1240 // Sent when content changes to or from the blocked state in
1241 // BlockedContentTabHelper. 1241 // BlockedContentTabHelper.
1242 // The source is the WebContents of the blocked content and details 1242 // The source is the WebContents of the blocked content and details
1243 // is a boolean: true if the content is entering the blocked state, false 1243 // is a boolean: true if the content is entering the blocked state, false
1244 // if it is leaving. 1244 // if it is leaving.
1245 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED, 1245 NOTIFICATION_CONTENT_BLOCKED_STATE_CHANGED,
1246 1246
1247 // SearchViewController.
1248 // Sent when animations initiated by search view controller complete.
1249 // The source is the SearchViewController whose animation is finished.
1250 // No details.
1251 NOTIFICATION_SEARCH_VIEW_CONTROLLER_ANIMATION_FINISHED,
1252
1253 // Note:- 1247 // Note:-
1254 // Currently only Content and Chrome define and use notifications. 1248 // Currently only Content and Chrome define and use notifications.
1255 // Custom notifications not belonging to Content and Chrome should start 1249 // Custom notifications not belonging to Content and Chrome should start
1256 // from here. 1250 // from here.
1257 NOTIFICATION_CHROME_END, 1251 NOTIFICATION_CHROME_END,
1258 }; 1252 };
1259 1253
1260 } // namespace chrome 1254 } // namespace chrome
1261 1255
1262 1256
1263 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1257 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698