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

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

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/browser/navigation_handle.cc ('k') | content/public/test/test_frame_navigation_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32a11dd9be3a867304de28a005030d553062d000..b86bcb77c18851038d5d46f949424f7637c351a0 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.
« no previous file with comments | « content/public/browser/navigation_handle.cc ('k') | content/public/test/test_frame_navigation_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698