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

Unified Diff: content/public/browser/content_browser_client.h

Issue 302653006: Remove use of ResourceRequestInfo::GetRequestID from cert enrollment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again. Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index d1e3bf56fa0c4e4f158f5ba1e71bc72700578d67..b4fdc395c838396ece04e9049eb68b4112841e4d 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -434,14 +434,12 @@ class CONTENT_EXPORT ContentBrowserClient {
// Adds a new installable certificate or private key.
// Typically used to install an X.509 user certificate.
// Note that it's up to the embedder to verify that the data is
- // well-formed. |cert_data| will be NULL if file_size is 0.
- virtual void AddCertificate(
- net::URLRequest* request,
- net::CertificateMimeType cert_type,
- const void* cert_data,
- size_t cert_size,
- int render_process_id,
- int render_view_id) {}
+ // well-formed. |cert_data| will be NULL if |cert_size| is 0.
+ virtual void AddCertificate(net::CertificateMimeType cert_type,
+ const void* cert_data,
+ size_t cert_size,
+ int render_process_id,
+ int render_frame_id) {}
// Returns a class to get notifications about media event. The embedder can
// return NULL if they're not interested.

Powered by Google App Engine
This is Rietveld 408576698