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

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

Issue 789703004: Reflect the status of a request for accessing a blacklisted url. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tested on Android/Desktop Created 6 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
Index: content/public/browser/interstitial_page.h
diff --git a/content/public/browser/interstitial_page.h b/content/public/browser/interstitial_page.h
index 368458a13e58d8e89319adf2b564a8eb843b09db..7c614e3212874f775248893c19979e32616165c0 100644
--- a/content/public/browser/interstitial_page.h
+++ b/content/public/browser/interstitial_page.h
@@ -79,7 +79,11 @@ class InterstitialPage {
// Sets the focus to the interstitial.
virtual void Focus() = 0;
- virtual RenderViewHost* GetRenderViewHostForTesting() const = 0;
+ // Gets the RenderViewHost associated with the Interstitial Page.
+ // Used for routing gestures to the interstitial in Android as it shares a
Bernhard Bauer 2014/12/22 14:50:05 Nit: I would probably rephrase this slightly, to n
knn 2015/01/07 23:50:29 Done.
+ // single platform window for all tabs.
+ virtual RenderViewHost* GetRenderViewHost() const = 0;
Charlie Reis 2015/01/07 20:55:38 Can you expose RenderFrameHost* GetMainFrame() ins
knn 2015/01/07 23:50:29 Done.
+
virtual InterstitialPageDelegate* GetDelegateForTesting() = 0;
virtual void DontCreateViewForTesting() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698