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

Unified Diff: chrome/browser/sync/signin_manager_unittest.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
« no previous file with comments | « chrome/browser/sync/glue/http_bridge_unittest.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/signin_manager_unittest.cc
diff --git a/chrome/browser/sync/signin_manager_unittest.cc b/chrome/browser/sync/signin_manager_unittest.cc
index d54ed66a1583b4c0fb780b82e262e96246e652fb..12c4204d266c50af76b5ff3b77660d01a8d612f9 100644
--- a/chrome/browser/sync/signin_manager_unittest.cc
+++ b/chrome/browser/sync/signin_manager_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -35,8 +35,9 @@ class SigninManagerTest : public TokenServiceTestHarness {
DCHECK(fetcher);
DCHECK(fetcher->delegate());
fetcher->delegate()->OnURLFetchComplete(
- fetcher, GURL(GaiaAuthFetcher::kClientLoginUrl), URLRequestStatus(),
- 200, ResponseCookies(), "SID=sid\nLSID=lsid\nAuth=auth");
+ fetcher, GURL(GaiaAuthFetcher::kClientLoginUrl),
+ net::URLRequestStatus(), 200, ResponseCookies(),
+ "SID=sid\nLSID=lsid\nAuth=auth");
// Then simulate the correct GetUserInfo response for the canonical email.
// A new URL fetcher is used for each call.
@@ -44,8 +45,9 @@ class SigninManagerTest : public TokenServiceTestHarness {
DCHECK(fetcher);
DCHECK(fetcher->delegate());
fetcher->delegate()->OnURLFetchComplete(
- fetcher, GURL(GaiaAuthFetcher::kGetUserInfoUrl), URLRequestStatus(),
- 200, ResponseCookies(), "email=user@gmail.com");
+ fetcher, GURL(GaiaAuthFetcher::kGetUserInfoUrl),
+ net::URLRequestStatus(), 200, ResponseCookies(),
+ "email=user@gmail.com");
}
« no previous file with comments | « chrome/browser/sync/glue/http_bridge_unittest.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698