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

Side by Side Diff: chrome/browser/tab_contents/tab_contents_ssl_helper.cc

Issue 7111013: Move most of the core SSL code from chrome to content. The UI code that's specific to Chrome (i.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
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 #include "chrome/browser/tab_contents/tab_contents_ssl_helper.h" 5 #include "chrome/browser/tab_contents/tab_contents_ssl_helper.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/string_number_conversions.h" 8 #include "base/string_number_conversions.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/browser/certificate_viewer.h" 10 #include "chrome/browser/certificate_viewer.h"
11 #include "chrome/browser/ssl/ssl_add_cert_handler.h" 11 #include "chrome/browser/ssl/ssl_add_cert_handler.h"
12 #include "chrome/browser/ssl/ssl_client_auth_handler.h"
13 #include "chrome/browser/ssl_client_certificate_selector.h" 12 #include "chrome/browser/ssl_client_certificate_selector.h"
14 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" 13 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
15 #include "chrome/browser/tab_contents/simple_alert_infobar_delegate.h" 14 #include "chrome/browser/tab_contents/simple_alert_infobar_delegate.h"
16 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 15 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
16 #include "content/browser/ssl/ssl_client_auth_handler.h"
17 #include "content/common/notification_details.h" 17 #include "content/common/notification_details.h"
18 #include "content/common/notification_source.h" 18 #include "content/common/notification_source.h"
19 #include "grit/generated_resources.h" 19 #include "grit/generated_resources.h"
20 #include "grit/theme_resources_standard.h" 20 #include "grit/theme_resources_standard.h"
21 #include "net/base/net_errors.h" 21 #include "net/base/net_errors.h"
22 #include "ui/base/l10n/l10n_util.h" 22 #include "ui/base/l10n/l10n_util.h"
23 #include "ui/base/resource/resource_bundle.h" 23 #include "ui/base/resource/resource_bundle.h"
24 24
25 namespace { 25 namespace {
26 26
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 TabContentsSSLHelper::SSLAddCertData* TabContentsSSLHelper::GetAddCertData( 224 TabContentsSSLHelper::SSLAddCertData* TabContentsSSLHelper::GetAddCertData(
225 SSLAddCertHandler* handler) { 225 SSLAddCertHandler* handler) {
226 // Find/create the slot. 226 // Find/create the slot.
227 linked_ptr<SSLAddCertData>& ptr_ref = 227 linked_ptr<SSLAddCertData>& ptr_ref =
228 request_id_to_add_cert_data_[handler->network_request_id()]; 228 request_id_to_add_cert_data_[handler->network_request_id()];
229 // Fill it if necessary. 229 // Fill it if necessary.
230 if (!ptr_ref.get()) 230 if (!ptr_ref.get())
231 ptr_ref.reset(new SSLAddCertData(tab_contents_)); 231 ptr_ref.reset(new SSLAddCertData(tab_contents_));
232 return ptr_ref.get(); 232 return ptr_ref.get();
233 } 233 }
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_request_info.cc ('k') | chrome/browser/ui/cocoa/ssl_client_certificate_selector.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698