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

Unified Diff: chrome/test/automation/automation_messages.h

Issue 62042: Added an automation IPC to set the parent of a window. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/browser/automation/automation_provider.cc ('k') | chrome/test/automation/tab_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_messages.h
===================================================================
--- chrome/test/automation/automation_messages.h (revision 13205)
+++ chrome/test/automation/automation_messages.h (working copy)
@@ -169,6 +169,8 @@
int width;
int height;
int flags;
+ bool set_parent;
+ HWND parent_window;
};
// Traits for SetWindowPos_Params structure to pack/unpack.
@@ -183,6 +185,8 @@
WriteParam(m, p.width);
WriteParam(m, p.height);
WriteParam(m, p.flags);
+ WriteParam(m, p.set_parent);
+ WriteParam(m, p.parent_window);
}
static bool Read(const Message* m, void** iter, param_type* p) {
return ReadParam(m, iter, &p->window) &&
@@ -191,7 +195,9 @@
ReadParam(m, iter, &p->top) &&
ReadParam(m, iter, &p->width) &&
ReadParam(m, iter, &p->height) &&
- ReadParam(m, iter, &p->flags);
+ ReadParam(m, iter, &p->flags) &&
+ ReadParam(m, iter, &p->set_parent) &&
+ ReadParam(m, iter, &p->parent_window);
}
static void Log(const param_type& p, std::wstring* l) {
l->append(L"(");
@@ -208,6 +214,10 @@
LogParam(p.height, l);
l->append(L", ");
LogParam(p.flags, l);
+ l->append(L", ");
+ LogParam(p.set_parent, l);
+ l->append(L", ");
+ LogParam(p.parent_window, l);
l->append(L")");
}
};
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/test/automation/tab_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698