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

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

Issue 2315443003: Stop sending serialized SSLStatus to the renderer. (Closed)
Patch Set: self review fix and merge fix Created 4 years, 3 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
« no previous file with comments | « content/browser/loader/sync_resource_handler.cc ('k') | content/child/resource_dispatcher.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_manager.h" 5 #include "content/browser/ssl/ssl_manager.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "base/supports_user_data.h" 12 #include "base/supports_user_data.h"
13 #include "content/browser/frame_host/navigation_entry_impl.h" 13 #include "content/browser/frame_host/navigation_entry_impl.h"
14 #include "content/browser/loader/resource_dispatcher_host_impl.h" 14 #include "content/browser/loader/resource_dispatcher_host_impl.h"
15 #include "content/browser/loader/resource_request_info_impl.h" 15 #include "content/browser/loader/resource_request_info_impl.h"
16 #include "content/browser/ssl/ssl_error_handler.h" 16 #include "content/browser/ssl/ssl_error_handler.h"
17 #include "content/browser/ssl/ssl_policy.h" 17 #include "content/browser/ssl/ssl_policy.h"
18 #include "content/browser/web_contents/web_contents_impl.h" 18 #include "content/browser/web_contents/web_contents_impl.h"
19 #include "content/common/ssl_status_serialization.h"
20 #include "content/public/browser/browser_context.h" 19 #include "content/public/browser/browser_context.h"
21 #include "content/public/browser/browser_thread.h" 20 #include "content/public/browser/browser_thread.h"
22 #include "content/public/browser/navigation_details.h" 21 #include "content/public/browser/navigation_details.h"
23 #include "content/public/browser/resource_request_details.h" 22 #include "content/public/browser/resource_request_details.h"
24 #include "content/public/common/ssl_status.h" 23 #include "content/public/common/ssl_status.h"
25 #include "net/url_request/url_request.h" 24 #include "net/url_request/url_request.h"
26 25
27 namespace content { 26 namespace content {
28 27
29 namespace { 28 namespace {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 NotifyDidChangeVisibleSSLState(); 194 NotifyDidChangeVisibleSSLState();
196 } 195 }
197 196
198 void SSLManager::NotifyDidChangeVisibleSSLState() { 197 void SSLManager::NotifyDidChangeVisibleSSLState() {
199 WebContentsImpl* contents = 198 WebContentsImpl* contents =
200 static_cast<WebContentsImpl*>(controller_->delegate()->GetWebContents()); 199 static_cast<WebContentsImpl*>(controller_->delegate()->GetWebContents());
201 contents->DidChangeVisibleSSLState(); 200 contents->DidChangeVisibleSSLState();
202 } 201 }
203 202
204 } // namespace content 203 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/sync_resource_handler.cc ('k') | content/child/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698