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

Unified Diff: content/public/test/test_navigation_observer.cc

Issue 2494633004: Remove about:srcdoc url conversion. (Closed)
Patch Set: Rebase Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/test_navigation_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_navigation_observer.cc
diff --git a/content/public/test/test_navigation_observer.cc b/content/public/test/test_navigation_observer.cc
index 684c66f91e9f5894967aa76c8f236f59b0a76e4a..6f48b2f23f9978b47b2f4e615bb6f83988874b17 100644
--- a/content/public/test/test_navigation_observer.cc
+++ b/content/public/test/test_navigation_observer.cc
@@ -49,10 +49,9 @@ class TestNavigationObserver::TestWebContentsObserver
void DidStartProvisionalLoadForFrame(RenderFrameHost* render_frame_host,
const GURL& validated_url,
- bool is_error_page,
- bool is_iframe_srcdoc) override {
+ bool is_error_page) override {
parent_->OnDidStartProvisionalLoad(render_frame_host, validated_url,
- is_error_page, is_iframe_srcdoc);
+ is_error_page);
}
void DidFailProvisionalLoad(
@@ -176,8 +175,7 @@ void TestNavigationObserver::OnDidStopLoading(WebContents* web_contents) {
void TestNavigationObserver::OnDidStartProvisionalLoad(
RenderFrameHost* render_frame_host,
const GURL& validated_url,
- bool is_error_page,
- bool is_iframe_srcdoc) {
+ bool is_error_page) {
last_navigation_succeeded_ = false;
}
« no previous file with comments | « content/public/test/test_navigation_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698