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

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

Issue 5526008: Simplify the magic required to create IPC message headers a bit. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/interactive_ui/npapi_interactive_test.cc » ('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 68536)
+++ chrome/test/automation/tab_proxy.cc (working copy)
@@ -229,20 +229,6 @@
return status;
}
-#if defined(OS_WIN)
-// TODO(port): Get rid of HWND.
-bool TabProxy::GetHWND(HWND* hwnd) const {
- if (!is_valid())
- return false;
- if (!hwnd) {
- NOTREACHED();
- return false;
- }
-
- return sender_->Send(new AutomationMsg_TabHWND(0, handle_, hwnd));
-}
-#endif // defined(OS_WIN)
-
bool TabProxy::GetProcessID(int* process_id) const {
if (!is_valid())
return false;
« no previous file with comments | « chrome/test/automation/tab_proxy.h ('k') | chrome/test/interactive_ui/npapi_interactive_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698