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

Unified Diff: printing/backend/print_backend_cups.cc

Issue 8468031: Add OVERRIDE to printing/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win cleanup Created 9 years, 1 month 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 | « no previous file | printing/emf_win.h » ('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 8d30328a1f00e7df0ead161826537c10bc5d6db1..ad0b0c96824de7284e4164233d893e48c966c38e 100644
--- a/printing/backend/print_backend_cups.cc
+++ b/printing/backend/print_backend_cups.cc
@@ -97,14 +97,15 @@ class PrintBackendCUPS : public PrintBackend {
virtual ~PrintBackendCUPS() {}
// PrintBackend implementation.
- virtual bool EnumeratePrinters(PrinterList* printer_list);
+ virtual bool EnumeratePrinters(PrinterList* printer_list) OVERRIDE;
- virtual std::string GetDefaultPrinterName();
+ virtual std::string GetDefaultPrinterName() OVERRIDE;
- virtual bool GetPrinterCapsAndDefaults(const std::string& printer_name,
- PrinterCapsAndDefaults* printer_info);
+ virtual bool GetPrinterCapsAndDefaults(
+ const std::string& printer_name,
+ PrinterCapsAndDefaults* printer_info) OVERRIDE;
- virtual bool IsValidPrinter(const std::string& printer_name);
+ virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE;
private:
// Following functions are wrappers around corresponding CUPS functions.
« no previous file with comments | « no previous file | printing/emf_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698