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

Unified Diff: chrome/test/automation/browser_proxy.cc

Issue 244003: Kiosk Mode implementation (Closed)
Patch Set: Finally fix MACOSX Created 11 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 | « chrome/test/automation/browser_proxy.h ('k') | chrome/test/test_browser_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/browser_proxy.cc
diff --git a/chrome/test/automation/browser_proxy.cc b/chrome/test/automation/browser_proxy.cc
index fcbd4afcf9ef40be74149a34febfbcce617cd26b..7da15e2515449de70f031f74af20347e49918bd1 100644
--- a/chrome/test/automation/browser_proxy.cc
+++ b/chrome/test/automation/browser_proxy.cc
@@ -457,3 +457,23 @@ scoped_refptr<AutocompleteEditProxy> BrowserProxy::GetAutocompleteEdit() {
result.swap(&p);
return result;
}
+
+bool BrowserProxy::IsFullscreen(bool* is_fullscreen) {
+ DCHECK(is_fullscreen);
+
+ if (!is_valid())
+ return false;
+
+ return sender_->Send(new AutomationMsg_IsFullscreen(0, handle_,
+ is_fullscreen));
+}
+
+bool BrowserProxy::IsFullscreenBubbleVisible(bool* is_visible) {
+ DCHECK(is_visible);
+
+ if (!is_valid())
+ return false;
+
+ return sender_->Send(new AutomationMsg_IsFullscreenBubbleVisible(0, handle_,
+ is_visible));
+}
« no previous file with comments | « chrome/test/automation/browser_proxy.h ('k') | chrome/test/test_browser_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698