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

Unified Diff: chrome/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc

Issue 7846007: net: Rename URLRequestStatus::os_error_. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix os_error_code Created 9 years, 3 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/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc
diff --git a/chrome/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc b/chrome/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc
index 37b5b479f514624b7dfc907577fca6b4a5431492..351316f6f6b4e4465dc7c10b41a9005e5c060514 100644
--- a/chrome/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc
+++ b/chrome/browser/sync/internal_api/syncapi_server_connection_manager_unittest.cc
@@ -35,11 +35,11 @@ class BlockingHttpPost : public HttpPostProviderInterface {
virtual void SetPostPayload(const char* content_type,
int content_length,
const char* content) OVERRIDE {}
- virtual bool MakeSynchronousPost(int* os_error_code, int* response_code)
+ virtual bool MakeSynchronousPost(int* error_code, int* response_code)
OVERRIDE {
wait_for_abort_.TimedWait(TimeDelta::FromMilliseconds(
TestTimeouts::action_max_timeout_ms()));
- *os_error_code = net::ERR_ABORTED;
+ *error_code = net::ERR_ABORTED;
return false;
}
virtual int GetResponseContentLength() const OVERRIDE {

Powered by Google App Engine
This is Rietveld 408576698