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

Unified Diff: cloud_print/service/service_state.cc

Issue 630753002: Replacing the OVERRIDE with override and FINAL with final in cloud_print (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « cloud_print/gcp20/prototype/privet_http_server.h ('k') | cloud_print/service/win/chrome_launcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/service_state.cc
diff --git a/cloud_print/service/service_state.cc b/cloud_print/service/service_state.cc
index 811c2c12c933382e9b85e6d4b5ae2cfa0745b48b..30e191b6f8ca929ae11fb6ede8778eba18506e12 100644
--- a/cloud_print/service/service_state.cc
+++ b/cloud_print/service/service_state.cc
@@ -38,7 +38,7 @@ const int64 kRequestTimeoutMs = 10 * 1000;
class ServiceStateURLRequestDelegate : public net::URLRequest::Delegate {
public:
- virtual void OnResponseStarted(net::URLRequest* request) OVERRIDE {
+ virtual void OnResponseStarted(net::URLRequest* request) override {
if (request->GetResponseCode() == 200) {
Read(request);
if (request->status().is_io_pending())
@@ -48,7 +48,7 @@ class ServiceStateURLRequestDelegate : public net::URLRequest::Delegate {
}
virtual void OnReadCompleted(net::URLRequest* request,
- int bytes_read) OVERRIDE {
+ int bytes_read) override {
Read(request);
if (!request->status().is_io_pending())
base::MessageLoop::current()->Quit();
« no previous file with comments | « cloud_print/gcp20/prototype/privet_http_server.h ('k') | cloud_print/service/win/chrome_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698