| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_frame/chrome_frame_automation.h" | 5 #include "chrome_frame/chrome_frame_automation.h" |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/trace_event.h" | 10 #include "base/debug/trace_event.h" |
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 12 #include "base/file_version_info.h" | 12 #include "base/file_version_info.h" |
| 13 #include "base/lock.h" | 13 #include "base/lock.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
| 16 #include "base/process_util.h" | 16 #include "base/process_util.h" |
| 17 #include "base/singleton.h" | 17 #include "base/singleton.h" |
| 18 #include "base/string_util.h" | 18 #include "base/string_util.h" |
| 19 #include "base/sys_info.h" | 19 #include "base/sys_info.h" |
| 20 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
| (...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 const URLRequestStatus& status) { | 1441 const URLRequestStatus& status) { |
| 1442 automation_server_->Send(new AutomationMsg_RequestEnd(0, tab_->handle(), | 1442 automation_server_->Send(new AutomationMsg_RequestEnd(0, tab_->handle(), |
| 1443 request_id, status)); | 1443 request_id, status)); |
| 1444 } | 1444 } |
| 1445 | 1445 |
| 1446 void ChromeFrameAutomationClient::OnCookiesRetrieved(bool success, | 1446 void ChromeFrameAutomationClient::OnCookiesRetrieved(bool success, |
| 1447 const GURL& url, const std::string& cookie_string, int cookie_id) { | 1447 const GURL& url, const std::string& cookie_string, int cookie_id) { |
| 1448 automation_server_->Send(new AutomationMsg_GetCookiesHostResponse(0, | 1448 automation_server_->Send(new AutomationMsg_GetCookiesHostResponse(0, |
| 1449 tab_->handle(), success, url, cookie_string, cookie_id)); | 1449 tab_->handle(), success, url, cookie_string, cookie_id)); |
| 1450 } | 1450 } |
| OLD | NEW |