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/renderer_host/render_view_host.h" | 5 #include "chrome/browser/renderer_host/render_view_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "app/l10n_util.h" | 10 #include "app/l10n_util.h" |
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1059 const std::string& security_info) { | 1059 const std::string& security_info) { |
1060 RenderViewHostDelegate::Resource* resource_delegate = | 1060 RenderViewHostDelegate::Resource* resource_delegate = |
1061 delegate_->GetResourceDelegate(); | 1061 delegate_->GetResourceDelegate(); |
1062 if (resource_delegate) { | 1062 if (resource_delegate) { |
1063 resource_delegate->DidLoadResourceFromMemoryCache( | 1063 resource_delegate->DidLoadResourceFromMemoryCache( |
1064 url, frame_origin, main_frame_origin, security_info); | 1064 url, frame_origin, main_frame_origin, security_info); |
1065 } | 1065 } |
1066 } | 1066 } |
1067 | 1067 |
1068 void RenderViewHost::OnMsgDidDisplayInsecureContent() { | 1068 void RenderViewHost::OnMsgDidDisplayInsecureContent() { |
| 1069 RenderViewHostDelegate::Resource* resource_delegate = |
| 1070 delegate_->GetResourceDelegate(); |
| 1071 if (resource_delegate) |
| 1072 resource_delegate->DidDisplayInsecureContent(); |
1069 } | 1073 } |
1070 | 1074 |
1071 void RenderViewHost::OnMsgDidRunInsecureContent( | 1075 void RenderViewHost::OnMsgDidRunInsecureContent( |
1072 const std::string& security_origin) { | 1076 const std::string& security_origin) { |
| 1077 RenderViewHostDelegate::Resource* resource_delegate = |
| 1078 delegate_->GetResourceDelegate(); |
| 1079 if (resource_delegate) |
| 1080 resource_delegate->DidRunInsecureContent(security_origin); |
1073 } | 1081 } |
1074 | 1082 |
1075 void RenderViewHost::OnMsgDidStartProvisionalLoadForFrame(bool is_main_frame, | 1083 void RenderViewHost::OnMsgDidStartProvisionalLoadForFrame(bool is_main_frame, |
1076 const GURL& url) { | 1084 const GURL& url) { |
1077 GURL validated_url(url); | 1085 GURL validated_url(url); |
1078 FilterURL(ChildProcessSecurityPolicy::GetInstance(), | 1086 FilterURL(ChildProcessSecurityPolicy::GetInstance(), |
1079 process()->id(), &validated_url); | 1087 process()->id(), &validated_url); |
1080 | 1088 |
1081 RenderViewHostDelegate::Resource* resource_delegate = | 1089 RenderViewHostDelegate::Resource* resource_delegate = |
1082 delegate_->GetResourceDelegate(); | 1090 delegate_->GetResourceDelegate(); |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1708 } | 1716 } |
1709 | 1717 |
1710 void RenderViewHost::ResetModalDialogEvent() { | 1718 void RenderViewHost::ResetModalDialogEvent() { |
1711 if (--modal_dialog_count_ == 0) | 1719 if (--modal_dialog_count_ == 0) |
1712 modal_dialog_event_->Reset(); | 1720 modal_dialog_event_->Reset(); |
1713 } | 1721 } |
1714 | 1722 |
1715 void RenderViewHost::UpdateBrowserWindowId(int window_id) { | 1723 void RenderViewHost::UpdateBrowserWindowId(int window_id) { |
1716 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); | 1724 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); |
1717 } | 1725 } |
OLD | NEW |