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

Unified Diff: chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc

Issue 10785017: Move CanonicalCookie into separate files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing include Created 8 years, 5 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/net/gaia/gaia_oauth_fetcher_unittest.cc
diff --git a/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc b/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc
index 8a6e3674a7a4527e909506155926d72e05e1f66a..9fc891b6bcc226c756b8df722534b55ce4e99549 100644
--- a/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc
+++ b/chrome/browser/net/gaia/gaia_oauth_fetcher_unittest.cc
@@ -87,9 +87,9 @@ TEST(GaiaOAuthFetcherTest, GetOAuthToken) {
base::Time creation = base::Time::Now();
base::Time expiration = base::Time::Time();
- scoped_ptr<net::CookieMonster::CanonicalCookie> canonical_cookie;
+ scoped_ptr<net::CanonicalCookie> canonical_cookie;
canonical_cookie.reset(
- new net::CookieMonster::CanonicalCookie(
+ new net::CanonicalCookie(
GURL("http://www.google.com/"), // url
"oauth_token", // name
oauth_token, // value

Powered by Google App Engine
This is Rietveld 408576698