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

Unified Diff: chrome/browser/automation/url_request_automation_job.h

Issue 5998006: Clean up Automation and Chrome Frame IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/automation/url_request_automation_job.h
===================================================================
--- chrome/browser/automation/url_request_automation_job.h (revision 69966)
+++ chrome/browser/automation/url_request_automation_job.h (working copy)
@@ -13,6 +13,7 @@
#include "net/url_request/url_request_job.h"
class AutomationResourceMessageFilter;
+struct AutomationURLResponse;
namespace net {
class HttpResponseHeaders;
@@ -21,7 +22,6 @@
namespace IPC {
class Message;
-struct AutomationURLResponse;
}
// net::URLRequestJob implementation that loads the resources using
@@ -81,10 +81,9 @@
void DisconnectFromMessageFilter();
// IPC message handlers.
- void OnRequestStarted(int tab, int id,
- const IPC::AutomationURLResponse& response);
- void OnDataAvailable(int tab, int id, const std::string& bytes);
- void OnRequestEnd(int tab, int id, const URLRequestStatus& status);
+ void OnRequestStarted(int id, const AutomationURLResponse& response);
+ void OnDataAvailable(int id, const std::string& bytes);
+ void OnRequestEnd(int id, const URLRequestStatus& status);
private:
virtual ~URLRequestAutomationJob();
« no previous file with comments | « chrome/browser/automation/testing_automation_provider.cc ('k') | chrome/browser/automation/url_request_automation_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698