OLD | NEW |
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 Loading... |
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) |
OLD | NEW |