| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <sstream> | 5 #include <sstream> |
| 6 | 6 |
| 7 #include "chrome/test/automation/automation_proxy.h" | 7 #include "chrome/test/automation/automation_proxy.h" |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "chrome/common/ipc_message_macros.h" |
| 11 #include "chrome/test/automation/automation_constants.h" | 12 #include "chrome/test/automation/automation_constants.h" |
| 12 #include "chrome/test/automation/automation_messages.h" | 13 #include "chrome/test/automation/automation_messages.h" |
| 13 #include "chrome/test/automation/browser_proxy.h" | 14 #include "chrome/test/automation/browser_proxy.h" |
| 14 #include "chrome/test/automation/tab_proxy.h" | 15 #include "chrome/test/automation/tab_proxy.h" |
| 15 #include "chrome/test/automation/window_proxy.h" | 16 #include "chrome/test/automation/window_proxy.h" |
| 16 #include "chrome/views/dialog_delegate.h" | 17 #include "chrome/views/dialog_delegate.h" |
| 17 | 18 |
| 18 using base::TimeDelta; | 19 using base::TimeDelta; |
| 19 using base::TimeTicks; | 20 using base::TimeTicks; |
| 20 | 21 |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 IPC::Message* response = NULL; | 547 IPC::Message* response = NULL; |
| 547 bool succeeded = SendAndWaitForResponse( | 548 bool succeeded = SendAndWaitForResponse( |
| 548 new AutomationMsg_CreateExternalTab(0, parent, dimensions, style), | 549 new AutomationMsg_CreateExternalTab(0, parent, dimensions, style), |
| 549 &response, AutomationMsg_CreateExternalTabResponse::ID); | 550 &response, AutomationMsg_CreateExternalTabResponse::ID); |
| 550 if (!succeeded) { | 551 if (!succeeded) { |
| 551 return NULL; | 552 return NULL; |
| 552 } | 553 } |
| 553 void* iter = NULL; | 554 void* iter = NULL; |
| 554 int handle = 0; | 555 int handle = 0; |
| 555 TabProxy* tab_proxy = NULL; | 556 TabProxy* tab_proxy = NULL; |
| 556 if (ReadParam(response, &iter, external_tab_container) && | 557 if (IPC::ReadParam(response, &iter, external_tab_container) && |
| 557 IsWindow(*external_tab_container)) { | 558 IsWindow(*external_tab_container)) { |
| 558 if (response->ReadInt(&iter, &handle) && | 559 if (response->ReadInt(&iter, &handle) && |
| 559 (handle >= 0)) { | 560 (handle >= 0)) { |
| 560 succeeded = true; | 561 succeeded = true; |
| 561 tab_proxy = new TabProxy(this, tracker_.get(), handle); | 562 tab_proxy = new TabProxy(this, tracker_.get(), handle); |
| 562 } | 563 } |
| 563 } else { | 564 } else { |
| 564 succeeded = false; | 565 succeeded = false; |
| 565 } | 566 } |
| 566 delete response; | 567 delete response; |
| 567 return tab_proxy; | 568 return tab_proxy; |
| 568 } | 569 } |
| OLD | NEW |