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

Unified Diff: chrome/test/automation/automation_proxy_uitest.cc

Issue 6166010: net: Remove typedef net::URLRequestStatus URLRequestStatus; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/automation/automation_proxy_uitest.cc
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc
index 60830e038184151a5461bd8a0415b94f6dcfc369..cbf3e1377028278ce5d7d52ca8536bfa4859c21e 100644
--- a/chrome/test/automation/automation_proxy_uitest.cc
+++ b/chrome/test/automation/automation_proxy_uitest.cc
@@ -686,10 +686,10 @@ void ExternalTabUITestMockClient::ReplyData(
}
void ExternalTabUITestMockClient::ReplyEOF(int tab_handle, int request_id) {
- ReplyEnd(URLRequestStatus(), tab_handle, request_id);
+ ReplyEnd(net::URLRequestStatus(), tab_handle, request_id);
}
-void ExternalTabUITestMockClient::ReplyEnd(const URLRequestStatus& status,
+void ExternalTabUITestMockClient::ReplyEnd(const net::URLRequestStatus& status,
int tab_handle, int request_id) {
AutomationProxy::Send(new AutomationMsg_RequestEnd(tab_handle,
request_id, status));
@@ -729,7 +729,7 @@ void ExternalTabUITestMockClient::IgnoreFavIconNetworkRequest() {
.Times(testing::AnyNumber())
.WillRepeatedly(testing::WithArgs<0, 0>(testing::Invoke(
CreateFunctor(this, &ExternalTabUITestMockClient::ReplyEnd,
- URLRequestStatus(URLRequestStatus::FAILED, 0)))));
+ net::URLRequestStatus(net::URLRequestStatus::FAILED, 0)))));
}
void ExternalTabUITestMockClient::InvalidateHandle(
« no previous file with comments | « chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc ('k') | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698