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

Side by Side Diff: chrome_frame/chrome_frame_automation.cc

Issue 3945002: Move debug-related stuff from base to the base/debug directory and use the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 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 | « chrome_frame/chrome_frame_activex.cc ('k') | net/base/host_resolver_impl.cc » ('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) 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
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 }
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame_activex.cc ('k') | net/base/host_resolver_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698