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

Unified Diff: printing/backend/print_backend_cups.cc

Issue 640663002: Replace OVERRIDE with its C++11 counterparts in src/printing (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 | « printing/backend/print_backend_chromeos.cc ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/print_backend_cups.cc
diff --git a/printing/backend/print_backend_cups.cc b/printing/backend/print_backend_cups.cc
index ba8fe7341695cd517f9de0fbc3e4d446497bfe41..e672b895944b53480eca91a9d23e682f739bddce 100644
--- a/printing/backend/print_backend_cups.cc
+++ b/printing/backend/print_backend_cups.cc
@@ -34,17 +34,17 @@ class PrintBackendCUPS : public PrintBackend {
http_encryption_t encryption, bool blocking);
// PrintBackend implementation.
- virtual bool EnumeratePrinters(PrinterList* printer_list) OVERRIDE;
- virtual std::string GetDefaultPrinterName() OVERRIDE;
+ virtual bool EnumeratePrinters(PrinterList* printer_list) override;
+ virtual std::string GetDefaultPrinterName() override;
virtual bool GetPrinterSemanticCapsAndDefaults(
const std::string& printer_name,
- PrinterSemanticCapsAndDefaults* printer_info) OVERRIDE;
+ PrinterSemanticCapsAndDefaults* printer_info) override;
virtual bool GetPrinterCapsAndDefaults(
const std::string& printer_name,
- PrinterCapsAndDefaults* printer_info) OVERRIDE;
+ PrinterCapsAndDefaults* printer_info) override;
virtual std::string GetPrinterDriverInfo(
- const std::string& printer_name) OVERRIDE;
- virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE;
+ const std::string& printer_name) override;
+ virtual bool IsValidPrinter(const std::string& printer_name) override;
protected:
virtual ~PrintBackendCUPS() {}
« no previous file with comments | « printing/backend/print_backend_chromeos.cc ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698