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

Side by Side Diff: android_webview/browser/renderer_host/aw_render_view_host_ext.cc

Issue 1890203002: Implement Web Restrictions in WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix final nits Created 4 years, 4 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
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 "android_webview/browser/renderer_host/aw_render_view_host_ext.h" 5 #include "android_webview/browser/renderer_host/aw_render_view_host_ext.h"
6 6
7 #include "android_webview/browser/aw_browser_context.h" 7 #include "android_webview/browser/aw_browser_context.h"
8 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h" 8 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h"
9 #include "android_webview/common/render_view_messages.h" 9 #include "android_webview/common/render_view_messages.h"
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "components/web_restrictions/browser/web_restrictions_mojo_implementati on.h"
14 #include "content/public/browser/android/content_view_core.h" 15 #include "content/public/browser/android/content_view_core.h"
15 #include "content/public/browser/render_frame_host.h" 16 #include "content/public/browser/render_frame_host.h"
16 #include "content/public/browser/render_process_host.h" 17 #include "content/public/browser/render_process_host.h"
17 #include "content/public/browser/render_view_host.h" 18 #include "content/public/browser/render_view_host.h"
18 #include "content/public/browser/user_metrics.h" 19 #include "content/public/browser/user_metrics.h"
19 #include "content/public/browser/web_contents.h" 20 #include "content/public/browser/web_contents.h"
20 #include "content/public/common/frame_navigate_params.h" 21 #include "content/public/common/frame_navigate_params.h"
22 #include "services/shell/public/cpp/interface_registry.h"
21 23
22 namespace android_webview { 24 namespace android_webview {
23 25
24 AwRenderViewHostExt::AwRenderViewHostExt( 26 AwRenderViewHostExt::AwRenderViewHostExt(
25 AwRenderViewHostExtClient* client, content::WebContents* contents) 27 AwRenderViewHostExtClient* client, content::WebContents* contents)
26 : content::WebContentsObserver(contents), 28 : content::WebContentsObserver(contents),
27 client_(client), 29 client_(client),
28 background_color_(SK_ColorWHITE), 30 background_color_(SK_ColorWHITE),
29 has_new_hit_test_data_(false) { 31 has_new_hit_test_data_(false) {
30 DCHECK(client_); 32 DCHECK(client_);
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 } 138 }
137 139
138 void AwRenderViewHostExt::ClearImageRequests() { 140 void AwRenderViewHostExt::ClearImageRequests() {
139 for (const auto& pair : image_requests_callback_map_) { 141 for (const auto& pair : image_requests_callback_map_) {
140 pair.second.Run(false); 142 pair.second.Run(false);
141 } 143 }
142 144
143 image_requests_callback_map_.clear(); 145 image_requests_callback_map_.clear();
144 } 146 }
145 147
148 void AwRenderViewHostExt::RenderFrameCreated(
149 content::RenderFrameHost* frame_host) {
150 frame_host->GetInterfaceRegistry()->AddInterface(
151 base::Bind(&web_restrictions::WebRestrictionsMojoImplementation::Create,
152 AwBrowserContext::GetDefault()->GetWebRestrictionProvider()));
153 }
154
146 void AwRenderViewHostExt::DidNavigateAnyFrame( 155 void AwRenderViewHostExt::DidNavigateAnyFrame(
147 content::RenderFrameHost* render_frame_host, 156 content::RenderFrameHost* render_frame_host,
148 const content::LoadCommittedDetails& details, 157 const content::LoadCommittedDetails& details,
149 const content::FrameNavigateParams& params) { 158 const content::FrameNavigateParams& params) {
150 DCHECK(CalledOnValidThread()); 159 DCHECK(CalledOnValidThread());
151 160
152 AwBrowserContext::FromWebContents(web_contents()) 161 AwBrowserContext::FromWebContents(web_contents())
153 ->AddVisitedURLs(params.redirects); 162 ->AddVisitedURLs(params.redirects);
154 } 163 }
155 164
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 content::RenderFrameHost* render_frame_host, 227 content::RenderFrameHost* render_frame_host,
219 const gfx::Size& contents_size) { 228 const gfx::Size& contents_size) {
220 // Only makes sense coming from the main frame of the current frame tree. 229 // Only makes sense coming from the main frame of the current frame tree.
221 if (render_frame_host != web_contents()->GetMainFrame()) 230 if (render_frame_host != web_contents()->GetMainFrame())
222 return; 231 return;
223 232
224 client_->OnWebLayoutContentsSizeChanged(contents_size); 233 client_->OnWebLayoutContentsSizeChanged(contents_size);
225 } 234 }
226 235
227 } // namespace android_webview 236 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698