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

Unified Diff: chrome/common/net/gaia/gaia_auth_fetcher_unittest.h

Issue 8375039: Create a content::UrlFetcher interface that lives in content/public/common and convert users to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 9 years, 2 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/common/net/gaia/gaia_auth_fetcher.cc ('k') | chrome/common/net/gaia/gaia_auth_fetcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/net/gaia/gaia_auth_fetcher_unittest.h
===================================================================
--- chrome/common/net/gaia/gaia_auth_fetcher_unittest.h (revision 107061)
+++ chrome/common/net/gaia/gaia_auth_fetcher_unittest.h (working copy)
@@ -42,10 +42,10 @@
virtual void Start();
- virtual const GURL& url() const;
- virtual const net::URLRequestStatus& status() const;
- virtual int response_code() const;
- virtual const net::ResponseCookies& cookies() const;
+ virtual const GURL& GetUrl() const OVERRIDE;
+ virtual const net::URLRequestStatus& GetStatus() const OVERRIDE;
+ virtual int GetResponseCode() const OVERRIDE;
+ virtual const net::ResponseCookies& GetCookies() const OVERRIDE;
virtual bool GetResponseAsString(std::string* out_response_string) const;
private:
« no previous file with comments | « chrome/common/net/gaia/gaia_auth_fetcher.cc ('k') | chrome/common/net/gaia/gaia_auth_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698