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

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

Issue 115740: Move download shelf from per-tab to per-window (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 7 months 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/tab_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/tab_proxy.cc
===================================================================
--- chrome/test/automation/tab_proxy.cc (revision 17483)
+++ chrome/test/automation/tab_proxy.cc (working copy)
@@ -42,19 +42,6 @@
return sender_->Send(new AutomationMsg_TabIndex(0, handle_, index));
}
-bool TabProxy::IsShelfVisible(bool* is_visible) {
- if (!is_valid())
- return false;
-
- if (!is_visible) {
- NOTREACHED();
- return false;
- }
-
- return sender_->Send(new AutomationMsg_ShelfVisibility(0, handle_,
- is_visible));
-}
-
int TabProxy::FindInPage(const std::wstring& search_string,
FindInPageDirection forward,
FindInPageCase match_case,
@@ -347,7 +334,7 @@
window_index,
&handle)))
return NULL;
-
+
if (handle == 0)
return NULL;
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome/test/test_browser_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698