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

Side by Side Diff: chrome/browser/local_discovery/cloud_print_printer_list.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
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 CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_ 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_ 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "chrome/browser/local_discovery/cloud_device_list_delegate.h" 12 #include "chrome/browser/local_discovery/cloud_device_list_delegate.h"
13 #include "chrome/browser/local_discovery/gcd_api_flow.h" 13 #include "chrome/browser/local_discovery/gcd_api_flow.h"
14 14
15 namespace local_discovery { 15 namespace local_discovery {
16 16
17 class CloudPrintPrinterList : public CloudPrintApiFlowRequest { 17 class CloudPrintPrinterList : public CloudPrintApiFlowRequest {
18 public: 18 public:
19 explicit CloudPrintPrinterList(CloudDeviceListDelegate* delegate); 19 explicit CloudPrintPrinterList(CloudDeviceListDelegate* delegate);
20 virtual ~CloudPrintPrinterList(); 20 virtual ~CloudPrintPrinterList();
21 21
22 virtual void OnGCDAPIFlowError(GCDApiFlow::Status status) OVERRIDE; 22 virtual void OnGCDAPIFlowError(GCDApiFlow::Status status) override;
23 23
24 virtual void OnGCDAPIFlowComplete( 24 virtual void OnGCDAPIFlowComplete(
25 const base::DictionaryValue& value) OVERRIDE; 25 const base::DictionaryValue& value) override;
26 26
27 virtual GURL GetURL() OVERRIDE; 27 virtual GURL GetURL() override;
28 28
29 private: 29 private:
30 bool FillPrinterDetails(const base::DictionaryValue& printer_value, 30 bool FillPrinterDetails(const base::DictionaryValue& printer_value,
31 CloudDeviceListDelegate::Device* printer_details); 31 CloudDeviceListDelegate::Device* printer_details);
32 32
33 CloudDeviceListDelegate* delegate_; 33 CloudDeviceListDelegate* delegate_;
34 }; 34 };
35 35
36 } // namespace local_discovery 36 } // namespace local_discovery
37 37
38 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_ 38 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_PRINT_PRINTER_LIST_H_
OLDNEW
« no previous file with comments | « chrome/browser/local_discovery/cloud_device_list.h ('k') | chrome/browser/local_discovery/gcd_api_flow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698