summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation/browser_proxy.cc
diff options
context:
space:
mode:
authorjoaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-21 13:15:05 +0000
committerjoaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-21 13:15:05 +0000
commite95925ae545c252a948701983c8fcf4df1b21390 (patch)
treea7291ae66399c13e637121682701fb95478b1fa4 /chrome/test/automation/browser_proxy.cc
parent67b2d29cdc7eb91cdf963972e4d1359d7befe50b (diff)
downloadchromium_src-e95925ae545c252a948701983c8fcf4df1b21390.zip
chromium_src-e95925ae545c252a948701983c8fcf4df1b21390.tar.gz
chromium_src-e95925ae545c252a948701983c8fcf4df1b21390.tar.bz2
Re-enabled the policy.PolicyTest.testBookmarkBarPolicy test.
BUG=98918 TEST=policy.PolicyTest.testBookmarkBarPolicy passes Review URL: http://codereview.chromium.org/8233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/browser_proxy.cc')
-rw-r--r--chrome/test/automation/browser_proxy.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/test/automation/browser_proxy.cc b/chrome/test/automation/browser_proxy.cc
index a3a1399..b00c945 100644
--- a/chrome/test/automation/browser_proxy.cc
+++ b/chrome/test/automation/browser_proxy.cc
@@ -284,7 +284,8 @@ bool BrowserProxy::RunCommand(int browser_command) const {
}
bool BrowserProxy::GetBookmarkBarVisibility(bool* is_visible,
- bool* is_animating) {
+ bool* is_animating,
+ bool* is_detached) {
if (!is_valid())
return false;
@@ -294,7 +295,7 @@ bool BrowserProxy::GetBookmarkBarVisibility(bool* is_visible,
}
return sender_->Send(new AutomationMsg_BookmarkBarVisibility(
- handle_, is_visible, is_animating));
+ handle_, is_visible, is_animating, is_detached));
}
bool BrowserProxy::GetBookmarksAsJSON(std::string *json_string) {