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

Unified Diff: chrome/browser/printing/print_preview_context_menu_observer.h

Issue 668093002: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/printing/print_preview_context_menu_observer.h
diff --git a/chrome/browser/printing/print_preview_context_menu_observer.h b/chrome/browser/printing/print_preview_context_menu_observer.h
index aaf10fd95b9c3e467b6177443ec67a6b1c4ac62e..e1a11ef2b286bbb0effe6d9ecf527c00bedcc05f 100644
--- a/chrome/browser/printing/print_preview_context_menu_observer.h
+++ b/chrome/browser/printing/print_preview_context_menu_observer.h
@@ -16,11 +16,11 @@ class WebContents;
class PrintPreviewContextMenuObserver : public RenderViewContextMenuObserver {
public:
explicit PrintPreviewContextMenuObserver(content::WebContents* contents);
- virtual ~PrintPreviewContextMenuObserver();
+ ~PrintPreviewContextMenuObserver() override;
// RenderViewContextMenuObserver implementation.
- virtual bool IsCommandIdSupported(int command_id) override;
- virtual bool IsCommandIdEnabled(int command_id) override;
+ bool IsCommandIdSupported(int command_id) override;
+ bool IsCommandIdEnabled(int command_id) override;
private:
bool IsPrintPreviewDialog();
« no previous file with comments | « chrome/browser/printing/print_job_worker.cc ('k') | chrome/browser/printing/print_preview_dialog_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698