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

Unified Diff: chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc

Issue 12226045: Linux/ChromeOS Chromium style checker cleanup, chrome/ edition part 1. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/renderer/searchbox/searchbox_extension.cc ('k') | chrome/service/cloud_print/print_system_cups.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc
===================================================================
--- chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc (revision 181040)
+++ chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc (working copy)
@@ -65,7 +65,7 @@
: io_message_loop_proxy_(io_message_loop_proxy) {
}
- virtual net::URLRequestContextGetter* GetRequestContextGetter() {
+ virtual net::URLRequestContextGetter* GetRequestContextGetter() OVERRIDE {
return new TrackingTestURLRequestContextGetter(
io_message_loop_proxy_.get(), throttler_manager());
}
@@ -99,14 +99,14 @@
const net::URLRequestStatus& status,
int response_code,
const net::ResponseCookies& cookies,
- const std::string& data);
+ const std::string& data) OVERRIDE;
- virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() {
+ virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE {
ADD_FAILURE();
return CloudPrintURLFetcher::STOP_PROCESSING;
}
- virtual std::string GetAuthHeader() {
+ virtual std::string GetAuthHeader() OVERRIDE {
return std::string();
}
@@ -152,18 +152,18 @@
const net::URLRequestStatus& status,
int response_code,
const net::ResponseCookies& cookies,
- const std::string& data);
+ const std::string& data) OVERRIDE;
virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
const net::URLFetcher* source,
const GURL& url,
- const std::string& data);
+ const std::string& data) OVERRIDE;
virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
- bool succeeded);
+ bool succeeded) OVERRIDE;
void SetHandleRawResponse(bool handle_raw_response) {
handle_raw_response_ = handle_raw_response;
@@ -186,7 +186,7 @@
virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
const net::URLFetcher* source,
const GURL& url,
- const std::string& data);
+ const std::string& data) OVERRIDE;
private:
int response_count_;
@@ -202,9 +202,9 @@
virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
const net::URLFetcher* source,
const GURL& url,
- const std::string& data);
+ const std::string& data) OVERRIDE;
- virtual void OnRequestGiveUp();
+ virtual void OnRequestGiveUp() OVERRIDE;
private:
int response_count_;
« no previous file with comments | « chrome/renderer/searchbox/searchbox_extension.cc ('k') | chrome/service/cloud_print/print_system_cups.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698