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

Unified Diff: content/public/browser/web_contents_observer.h

Issue 2494633004: Remove about:srcdoc url conversion. (Closed)
Patch Set: Fix tests with about::blank Created 4 years, 1 month 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
Index: content/public/browser/web_contents_observer.h
diff --git a/content/public/browser/web_contents_observer.h b/content/public/browser/web_contents_observer.h
index 6c38d353dedd628707fc654bd2d2889ecd16c49a..d6ddf2fc3570b2f246d194408844c0d1a743e9c4 100644
--- a/content/public/browser/web_contents_observer.h
+++ b/content/public/browser/web_contents_observer.h
@@ -200,9 +200,8 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
// |render_frame_host| is the RenderFrameHost for which the provisional load
// is happening.
//
- // Since the URL validation will strip error URLs, or srcdoc URLs, the boolean
- // flags |is_error_page| and |is_iframe_srcdoc| will indicate that the not
- // validated URL was either an error page or an iframe srcdoc.
+ // Since the URL validation will strip error URLs, the boolean flag
+ // |is_error_page| will indicate that the not validated URL was an error page.
//
// Note that during a cross-process navigation, several provisional loads
// can be on-going in parallel.
@@ -211,8 +210,7 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
virtual void DidStartProvisionalLoadForFrame(
RenderFrameHost* render_frame_host,
const GURL& validated_url,
- bool is_error_page,
- bool is_iframe_srcdoc) {}
+ bool is_error_page) {}
// This method is invoked when the provisional load was successfully
// committed.

Powered by Google App Engine
This is Rietveld 408576698