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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/automation/automation_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/automation/automation_provider.h" 5 #include "chrome/browser/automation/automation_provider.h"
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/thread.h" 10 #include "base/thread.h"
(...skipping 2753 matching lines...) Expand 10 before | Expand all | Expand 10 after
2764 unsigned long process_id = 0; 2764 unsigned long process_id = 0;
2765 unsigned long thread_id = 0; 2765 unsigned long thread_id = 0;
2766 2766
2767 thread_id = GetWindowThreadProcessId(params.window, &process_id); 2767 thread_id = GetWindowThreadProcessId(params.window, &process_id);
2768 2768
2769 if (thread_id != GetCurrentThreadId()) { 2769 if (thread_id != GetCurrentThreadId()) {
2770 NOTREACHED(); 2770 NOTREACHED();
2771 return; 2771 return;
2772 } 2772 }
2773 2773
2774 if (params.set_parent) {
2775 if (IsWindow(params.parent_window)) {
2776 if (!SetParent(params.window, params.parent_window))
2777 DLOG(WARNING) << "SetParent failed. Error 0x%x" << GetLastError();
2778 }
2779 }
2780
2774 SetWindowPos(params.window, params.window_insert_after, params.left, 2781 SetWindowPos(params.window, params.window_insert_after, params.left,
2775 params.top, params.width, params.height, params.flags); 2782 params.top, params.width, params.height, params.flags);
2776 } 2783 }
2784
2777 #endif // defined(OS_WIN) 2785 #endif // defined(OS_WIN)
OLDNEW
« 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