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

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

Issue 9384014: Remove knowledge about SSLClientAuthHandler from chrome. Instead a callback is given to the embed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments+sync Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/mock_content_browser_client.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) 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 #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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 1005
1006 // BrowsingDataRemover ---------------------------------------------------- 1006 // BrowsingDataRemover ----------------------------------------------------
1007 // Sent on the UI thread after BrowsingDataRemover has removed browsing data 1007 // Sent on the UI thread after BrowsingDataRemover has removed browsing data
1008 // but before it has notified its explicit observers. The source is a 1008 // but before it has notified its explicit observers. The source is a
1009 // Source<Profile> containing the profile in which browsing data was removed, 1009 // Source<Profile> containing the profile in which browsing data was removed,
1010 // and the detail is a BrowsingDataRemover::NotificationDetail containing the 1010 // and the detail is a BrowsingDataRemover::NotificationDetail containing the
1011 // removal mask and the start of the removal timeframe with which 1011 // removal mask and the start of the removal timeframe with which
1012 // BrowsingDataRemove::Remove was called. 1012 // BrowsingDataRemove::Remove was called.
1013 NOTIFICATION_BROWSING_DATA_REMOVED, 1013 NOTIFICATION_BROWSING_DATA_REMOVED,
1014 1014
1015 // The user accepted or dismissed a SSL client authentication request.
1016 // The source is a Source<net::HttpNetworkSession>. Details is a
1017 // (std::pair<net::SSLCertRequestInfo*, net::X509Certificate*>).
1018 NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED,
1019
1015 // Note:- 1020 // Note:-
1016 // Currently only Content and Chrome define and use notifications. 1021 // Currently only Content and Chrome define and use notifications.
1017 // Custom notifications not belonging to Content and Chrome should start 1022 // Custom notifications not belonging to Content and Chrome should start
1018 // from here. 1023 // from here.
1019 NOTIFICATION_CHROME_END, 1024 NOTIFICATION_CHROME_END,
1020 }; 1025 };
1021 1026
1022 } // namespace chrome 1027 } // namespace chrome
1023 1028
1024 1029
1025 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1030 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/mock_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698