diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 01:56:52 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 01:56:52 +0000 |
commit | bdb7ff6f3d14ea2c252f1946ea200326acc047e9 (patch) | |
tree | 793c5fb7947554416bf9342cc6c728715add31d2 /chrome/test/automation/browser_proxy.cc | |
parent | cf5804412f3a525a35a7549bb557bc20d3243499 (diff) | |
download | chromium_src-bdb7ff6f3d14ea2c252f1946ea200326acc047e9.zip chromium_src-bdb7ff6f3d14ea2c252f1946ea200326acc047e9.tar.gz chromium_src-bdb7ff6f3d14ea2c252f1946ea200326acc047e9.tar.bz2 |
Remove the page and app menus.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3033007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52985 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/browser_proxy.cc')
-rw-r--r-- | chrome/test/automation/browser_proxy.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/automation/browser_proxy.cc b/chrome/test/automation/browser_proxy.cc index 670ee5d..41795e6 100644 --- a/chrome/test/automation/browser_proxy.cc +++ b/chrome/test/automation/browser_proxy.cc @@ -54,12 +54,12 @@ bool BrowserProxy::BringToFront() { return succeeded; } -bool BrowserProxy::IsPageMenuCommandEnabled(int id, bool* enabled) { +bool BrowserProxy::IsMenuCommandEnabled(int id, bool* enabled) { if (!is_valid()) return false; - return sender_->Send(new AutomationMsg_IsPageMenuCommandEnabled( - 0, handle_, id, enabled)); + return sender_->Send(new AutomationMsg_IsMenuCommandEnabled(0, handle_, id, + enabled)); } bool BrowserProxy::AppendTab(const GURL& tab_url) { |