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

Unified Diff: chrome/browser/automation/automation_provider.cc

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 | « no previous file | chrome/test/automation/automation_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/automation_provider.cc
===================================================================
--- chrome/browser/automation/automation_provider.cc (revision 13205)
+++ chrome/browser/automation/automation_provider.cc (working copy)
@@ -2771,7 +2771,15 @@
return;
}
+ if (params.set_parent) {
+ if (IsWindow(params.parent_window)) {
+ if (!SetParent(params.window, params.parent_window))
+ DLOG(WARNING) << "SetParent failed. Error 0x%x" << GetLastError();
+ }
+ }
+
SetWindowPos(params.window, params.window_insert_after, params.left,
params.top, params.width, params.height, params.flags);
}
+
#endif // defined(OS_WIN)
« no previous file with comments | « no previous file | chrome/test/automation/automation_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698