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

Unified Diff: chrome/common/net/gaia/gaia_oauth_client_unittest.cc

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
Index: chrome/common/net/gaia/gaia_oauth_client_unittest.cc
===================================================================
--- chrome/common/net/gaia/gaia_oauth_client_unittest.cc (revision 107061)
+++ chrome/common/net/gaia/gaia_oauth_client_unittest.cc (working copy)
@@ -57,19 +57,20 @@
delegate()->OnURLFetchComplete(this);
}
- virtual const GURL& url() const {
+ virtual const GURL& GetUrl() const OVERRIDE {
return url_;
}
- virtual const net::URLRequestStatus& status() const {
+ virtual const net::URLRequestStatus& GetStatus() const OVERRIDE {
return status_;
}
- virtual int response_code() const {
+ virtual int GetResponseCode() const OVERRIDE {
return response_code_;
}
- virtual bool GetResponseAsString(std::string* out_response_string) const {
+ virtual bool GetResponseAsString(
+ std::string* out_response_string) const OVERRIDE {
*out_response_string = results_;
return true;
}
« no previous file with comments | « chrome/common/net/gaia/gaia_oauth_client.cc ('k') | chrome/service/cloud_print/cloud_print_proxy_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698