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

Side by Side Diff: cloud_print/gcp20/prototype/cloud_print_request.h

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 unified diff | Download patch
« no previous file with comments | « no previous file | cloud_print/gcp20/prototype/cloud_print_requester.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_ 5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_
6 #define CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_ 6 #define CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 // Add header to request. 57 // Add header to request.
58 void AddHeader(const std::string& header); 58 void AddHeader(const std::string& header);
59 59
60 private: 60 private:
61 CloudPrintRequest(const GURL& url, 61 CloudPrintRequest(const GURL& url,
62 net::URLFetcher::RequestType method, 62 net::URLFetcher::RequestType method,
63 Delegate* delegate); 63 Delegate* delegate);
64 64
65 // net::URLFetcherDelegate methods: 65 // net::URLFetcherDelegate methods:
66 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; 66 virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
67 67
68 // Method for handling timeout. 68 // Method for handling timeout.
69 void OnRequestTimeout(); 69 void OnRequestTimeout();
70 70
71 scoped_ptr<net::URLFetcher> fetcher_; 71 scoped_ptr<net::URLFetcher> fetcher_;
72 72
73 Delegate* delegate_; 73 Delegate* delegate_;
74 74
75 DISALLOW_COPY_AND_ASSIGN(CloudPrintRequest); 75 DISALLOW_COPY_AND_ASSIGN(CloudPrintRequest);
76 }; 76 };
77 77
78 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_ 78 #endif // CLOUD_PRINT_GCP20_PROTOTYPE_CLOUD_PRINT_REQUEST_H_
79 79
OLDNEW
« no previous file with comments | « no previous file | cloud_print/gcp20/prototype/cloud_print_requester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698