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

Unified Diff: content/shell/shell_android.cc

Issue 11308223: [content shell] add support for entering/exiting fullscreen mode for layout test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « content/shell/shell.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_android.cc
diff --git a/content/shell/shell_android.cc b/content/shell/shell_android.cc
index 5fb8cb0828b7a0943481c3ee3af2907eef7fe9bc..66663e03d29793406da28cc5d60f58feb060a050 100644
--- a/content/shell/shell_android.cc
+++ b/content/shell/shell_android.cc
@@ -66,14 +66,15 @@ void Shell::LoadProgressChanged(WebContents* source, double progress) {
Java_Shell_onLoadProgressChanged(env, java_object_.obj(), progress);
}
-void Shell::ToggleFullscreenModeForTab(WebContents* web_contents,
- bool enter_fullscreen) {
+void Shell::PlatformToggleFullscreenModeForTab(WebContents* web_contents,
+ bool enter_fullscreen) {
JNIEnv* env = AttachCurrentThread();
Java_Shell_toggleFullscreenModeForTab(
env, java_object_.obj(), enter_fullscreen);
}
-bool Shell::IsFullscreenForTabOrPending(const WebContents* web_contents) const {
+bool Shell::PlatformIsFullscreenForTabOrPending(
+ const WebContents* web_contents) const {
JNIEnv* env = AttachCurrentThread();
return Java_Shell_isFullscreenForTabOrPending(env, java_object_.obj());
}
« no previous file with comments | « content/shell/shell.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698