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

Unified Diff: chrome/browser/ui/webui/print_preview/print_preview_handler.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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
Index: chrome/browser/ui/webui/print_preview/print_preview_handler.h
diff --git a/chrome/browser/ui/webui/print_preview/print_preview_handler.h b/chrome/browser/ui/webui/print_preview/print_preview_handler.h
index 3db55b87d2ea30f03ad9124f12ddb6395b505945..d1682ff34942401177698eaf6ef1dd4f0144c615 100644
--- a/chrome/browser/ui/webui/print_preview/print_preview_handler.h
+++ b/chrome/browser/ui/webui/print_preview/print_preview_handler.h
@@ -52,21 +52,21 @@ class PrintPreviewHandler
virtual ~PrintPreviewHandler();
// WebUIMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// SelectFileDialog::Listener implementation.
virtual void FileSelected(const base::FilePath& path,
int index,
- void* params) OVERRIDE;
- virtual void FileSelectionCanceled(void* params) OVERRIDE;
+ void* params) override;
+ virtual void FileSelectionCanceled(void* params) override;
// PrintViewManagerObserver implementation.
- virtual void OnPrintDialogShown() OVERRIDE;
+ virtual void OnPrintDialogShown() override;
// MergeSessionHelper::Observer implementation.
virtual void MergeSessionCompleted(
const std::string& account_id,
- const GoogleServiceAuthError& error) OVERRIDE;
+ const GoogleServiceAuthError& error) override;
// Displays a modal dialog, prompting the user to select a file.
void SelectFile(const base::FilePath& default_path);
@@ -91,17 +91,17 @@ class PrintPreviewHandler
bool added,
const std::string& name,
bool has_local_printing,
- const local_discovery::DeviceDescription& description) OVERRIDE;
- virtual void LocalPrinterRemoved(const std::string& name) OVERRIDE;
- virtual void LocalPrinterCacheFlushed() OVERRIDE;
+ const local_discovery::DeviceDescription& description) override;
+ virtual void LocalPrinterRemoved(const std::string& name) override;
+ virtual void LocalPrinterCacheFlushed() override;
// PrivetLocalPrintOperation::Delegate implementation.
virtual void OnPrivetPrintingDone(
const local_discovery::PrivetLocalPrintOperation*
- print_operation) OVERRIDE;
+ print_operation) override;
virtual void OnPrivetPrintingError(
const local_discovery::PrivetLocalPrintOperation* print_operation,
- int http_code) OVERRIDE;
+ int http_code) override;
#endif // ENABLE_SERVICE_DISCOVERY
int regenerate_preview_request_count() const {
return regenerate_preview_request_count_;

Powered by Google App Engine
This is Rietveld 408576698