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

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

Issue 243012: Update our mixed content state with information from the new mixed content... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « chrome/browser/ssl/ssl_policy_backend.h ('k') | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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.h" 5 #include "chrome/browser/tab_contents/tab_contents.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/file_version_info.h" 9 #include "base/file_version_info.h"
10 #include "base/process_util.h" 10 #include "base/process_util.h"
(...skipping 1756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1767 LoadFromMemoryCacheDetails details(url, frame_origin, main_frame_origin, 1767 LoadFromMemoryCacheDetails details(url, frame_origin, main_frame_origin,
1768 process()->id(), cert_id, cert_status); 1768 process()->id(), cert_id, cert_status);
1769 1769
1770 NotificationService::current()->Notify( 1770 NotificationService::current()->Notify(
1771 NotificationType::LOAD_FROM_MEMORY_CACHE, 1771 NotificationType::LOAD_FROM_MEMORY_CACHE,
1772 Source<NavigationController>(&controller_), 1772 Source<NavigationController>(&controller_),
1773 Details<LoadFromMemoryCacheDetails>(&details)); 1773 Details<LoadFromMemoryCacheDetails>(&details));
1774 } 1774 }
1775 1775
1776 void TabContents::DidDisplayInsecureContent() { 1776 void TabContents::DidDisplayInsecureContent() {
1777 // TODO(abarth): Update the HTTPS state. 1777 controller_.ssl_manager()->DidDisplayInsecureContent();
1778 } 1778 }
1779 1779
1780 void TabContents::DidRunInsecureContent(const std::string& security_origin) { 1780 void TabContents::DidRunInsecureContent(const std::string& security_origin) {
1781 // TODO(abarth): Update the HTTPS state. 1781 controller_.ssl_manager()->DidRunInsecureContent(security_origin);
1782 } 1782 }
1783 1783
1784 void TabContents::DidFailProvisionalLoadWithError( 1784 void TabContents::DidFailProvisionalLoadWithError(
1785 RenderViewHost* render_view_host, 1785 RenderViewHost* render_view_host,
1786 bool is_main_frame, 1786 bool is_main_frame,
1787 int error_code, 1787 int error_code,
1788 const GURL& url, 1788 const GURL& url,
1789 bool showing_repost_interstitial) { 1789 bool showing_repost_interstitial) {
1790 if (net::ERR_ABORTED == error_code) { 1790 if (net::ERR_ABORTED == error_code) {
1791 // EVIL HACK ALERT! Ignore failed loads when we're showing interstitials. 1791 // EVIL HACK ALERT! Ignore failed loads when we're showing interstitials.
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
2563 2563
2564 default: 2564 default:
2565 NOTREACHED(); 2565 NOTREACHED();
2566 } 2566 }
2567 } 2567 }
2568 2568
2569 void TabContents::set_encoding(const std::string& encoding) { 2569 void TabContents::set_encoding(const std::string& encoding) {
2570 encoding_ = CharacterEncoding::GetCanonicalEncodingNameByAliasName(encoding); 2570 encoding_ = CharacterEncoding::GetCanonicalEncodingNameByAliasName(encoding);
2571 } 2571 }
2572 2572
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_policy_backend.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698