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

Unified Diff: chrome/common/net/test_url_fetcher_factory.h

Issue 7062005: Fix clang errors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | « no previous file | chrome/common/net/test_url_fetcher_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/net/test_url_fetcher_factory.h
diff --git a/chrome/common/net/test_url_fetcher_factory.h b/chrome/common/net/test_url_fetcher_factory.h
index 37588040349e8aa97a88607b0069b2915589bf00..0e39c0828c21956d2491fef20b00c8dfac573795 100644
--- a/chrome/common/net/test_url_fetcher_factory.h
+++ b/chrome/common/net/test_url_fetcher_factory.h
@@ -76,15 +76,15 @@ class TestURLFetcher : public URLFetcher {
Delegate* delegate() const { return URLFetcher::delegate(); }
void set_url(const GURL& url) { fake_url_ = url; }
- const GURL& url() const { return fake_url_; }
+ virtual const GURL& url() const;
void set_status(const net::URLRequestStatus& status);
- const net::URLRequestStatus& status() const { return fake_status_; }
+ virtual const net::URLRequestStatus& status() const;
void set_response_code(int response_code) {
fake_response_code_ = response_code;
}
- virtual int response_code() const { return fake_response_code_; }
+ virtual int response_code() const;
// Set string data.
void SetResponseString(const std::string& response);
« no previous file with comments | « no previous file | chrome/common/net/test_url_fetcher_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698