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

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

Issue 16408017: Use a direct include of utf_string_conversions.h in content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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) 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/strings/utf_string_conversions.h"
10 #include "base/supports_user_data.h" 11 #include "base/supports_user_data.h"
11 #include "base/utf_string_conversions.h"
12 #include "content/browser/loader/resource_dispatcher_host_impl.h" 12 #include "content/browser/loader/resource_dispatcher_host_impl.h"
13 #include "content/browser/loader/resource_request_info_impl.h" 13 #include "content/browser/loader/resource_request_info_impl.h"
14 #include "content/browser/ssl/ssl_cert_error_handler.h" 14 #include "content/browser/ssl/ssl_cert_error_handler.h"
15 #include "content/browser/ssl/ssl_policy.h" 15 #include "content/browser/ssl/ssl_policy.h"
16 #include "content/browser/ssl/ssl_request_info.h" 16 #include "content/browser/ssl/ssl_request_info.h"
17 #include "content/browser/web_contents/navigation_entry_impl.h" 17 #include "content/browser/web_contents/navigation_entry_impl.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" 19 #include "content/common/ssl_status_serialization.h"
20 #include "content/public/browser/browser_context.h" 20 #include "content/public/browser/browser_context.h"
21 #include "content/public/browser/browser_thread.h" 21 #include "content/public/browser/browser_thread.h"
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 SSLStatus original_ssl_status = entry->GetSSL(); // Copy! 241 SSLStatus original_ssl_status = entry->GetSSL(); // Copy!
242 242
243 policy()->UpdateEntry(entry, controller_->web_contents()); 243 policy()->UpdateEntry(entry, controller_->web_contents());
244 244
245 if (!entry->GetSSL().Equals(original_ssl_status)) 245 if (!entry->GetSSL().Equals(original_ssl_status))
246 controller_->web_contents()->DidChangeVisibleSSLState(); 246 controller_->web_contents()->DidChangeVisibleSSLState();
247 } 247 }
248 248
249 } // namespace content 249 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/speech/speech_recognition_browsertest.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698