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; |
}; |