OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |