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

Side by Side Diff: content/browser/ssl/ssl_policy.cc

Issue 9960071: TabContents -> WebContentsImpl, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | « content/browser/ssl/ssl_manager.cc ('k') | content/browser/ssl/ssl_policy_backend.cc » ('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 #include "content/browser/ssl/ssl_policy.h" 5 #include "content/browser/ssl/ssl_policy.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/base_switches.h" 8 #include "base/base_switches.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/memory/singleton.h" 10 #include "base/memory/singleton.h"
11 #include "base/string_piece.h" 11 #include "base/string_piece.h"
12 #include "base/string_util.h" 12 #include "base/string_util.h"
13 #include "content/browser/renderer_host/render_process_host_impl.h" 13 #include "content/browser/renderer_host/render_process_host_impl.h"
14 #include "content/browser/renderer_host/render_view_host_impl.h" 14 #include "content/browser/renderer_host/render_view_host_impl.h"
15 #include "content/browser/site_instance_impl.h" 15 #include "content/browser/site_instance_impl.h"
16 #include "content/browser/ssl/ssl_cert_error_handler.h" 16 #include "content/browser/ssl/ssl_cert_error_handler.h"
17 #include "content/browser/ssl/ssl_request_info.h" 17 #include "content/browser/ssl/ssl_request_info.h"
18 #include "content/browser/tab_contents/navigation_entry_impl.h"
19 #include "content/browser/tab_contents/tab_contents.h" 18 #include "content/browser/tab_contents/tab_contents.h"
19 #include "content/browser/web_contents/navigation_entry_impl.h"
20 #include "content/public/browser/content_browser_client.h" 20 #include "content/public/browser/content_browser_client.h"
21 #include "content/public/common/ssl_status.h" 21 #include "content/public/common/ssl_status.h"
22 #include "content/public/common/url_constants.h" 22 #include "content/public/common/url_constants.h"
23 #include "net/base/ssl_info.h" 23 #include "net/base/ssl_info.h"
24 #include "webkit/glue/resource_type.h" 24 #include "webkit/glue/resource_type.h"
25 25
26 using content::NavigationEntryImpl; 26 using content::NavigationEntryImpl;
27 using content::SiteInstance; 27 using content::SiteInstance;
28 using content::SSLStatus; 28 using content::SSLStatus;
29 29
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 entry->GetSSL().security_style = entry->GetURL().SchemeIsSecure() ? 226 entry->GetSSL().security_style = entry->GetURL().SchemeIsSecure() ?
227 content::SECURITY_STYLE_AUTHENTICATED : 227 content::SECURITY_STYLE_AUTHENTICATED :
228 content::SECURITY_STYLE_UNAUTHENTICATED; 228 content::SECURITY_STYLE_UNAUTHENTICATED;
229 } 229 }
230 230
231 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { 231 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) {
232 GURL parsed_origin(origin); 232 GURL parsed_origin(origin);
233 if (parsed_origin.SchemeIsSecure()) 233 if (parsed_origin.SchemeIsSecure())
234 backend_->HostRanInsecureContent(parsed_origin.host(), pid); 234 backend_->HostRanInsecureContent(parsed_origin.host(), pid);
235 } 235 }
OLDNEW
« no previous file with comments | « content/browser/ssl/ssl_manager.cc ('k') | content/browser/ssl/ssl_policy_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698