| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/testing_automation_provider.h" | 5 #include "chrome/browser/automation/testing_automation_provider.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 handled = AutomationProvider::OnMessageReceived(message)) | 471 handled = AutomationProvider::OnMessageReceived(message)) |
| 472 IPC_END_MESSAGE_MAP_EX() | 472 IPC_END_MESSAGE_MAP_EX() |
| 473 if (!deserialize_success) | 473 if (!deserialize_success) |
| 474 OnMessageDeserializationFailure(); | 474 OnMessageDeserializationFailure(); |
| 475 return handled; | 475 return handled; |
| 476 } | 476 } |
| 477 | 477 |
| 478 void TestingAutomationProvider::OnChannelError() { | 478 void TestingAutomationProvider::OnChannelError() { |
| 479 if (!reinitialize_on_channel_error_ && | 479 if (!reinitialize_on_channel_error_ && |
| 480 browser_shutdown::GetShutdownType() == browser_shutdown::NOT_VALID) | 480 browser_shutdown::GetShutdownType() == browser_shutdown::NOT_VALID) |
| 481 BrowserList::AttemptExit(false); | 481 BrowserList::AttemptExit(); |
| 482 AutomationProvider::OnChannelError(); | 482 AutomationProvider::OnChannelError(); |
| 483 } | 483 } |
| 484 | 484 |
| 485 void TestingAutomationProvider::CloseBrowser(int browser_handle, | 485 void TestingAutomationProvider::CloseBrowser(int browser_handle, |
| 486 IPC::Message* reply_message) { | 486 IPC::Message* reply_message) { |
| 487 if (!browser_tracker_->ContainsHandle(browser_handle)) | 487 if (!browser_tracker_->ContainsHandle(browser_handle)) |
| 488 return; | 488 return; |
| 489 | 489 |
| 490 Browser* browser = browser_tracker_->GetResource(browser_handle); | 490 Browser* browser = browser_tracker_->GetResource(browser_handle); |
| 491 new BrowserClosedNotificationObserver(browser, this, reply_message); | 491 new BrowserClosedNotificationObserver(browser, this, reply_message); |
| (...skipping 6154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6646 | 6646 |
| 6647 Send(reply_message_); | 6647 Send(reply_message_); |
| 6648 redirect_query_ = 0; | 6648 redirect_query_ = 0; |
| 6649 reply_message_ = NULL; | 6649 reply_message_ = NULL; |
| 6650 } | 6650 } |
| 6651 | 6651 |
| 6652 void TestingAutomationProvider::OnRemoveProvider() { | 6652 void TestingAutomationProvider::OnRemoveProvider() { |
| 6653 if (g_browser_process) | 6653 if (g_browser_process) |
| 6654 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); | 6654 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); |
| 6655 } | 6655 } |
| OLD | NEW |