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

Unified Diff: pdf/pdf.h

Issue 1554533002: Mark methods with override in pdf/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add Clang plugin flag correctly Created 5 years 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 | « pdf/out_of_process_instance.h ('k') | pdf/pdf.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/pdf.h
diff --git a/pdf/pdf.h b/pdf/pdf.h
index 37e72e510be95cffb2768fb3c8e3d049bdadda55..342757f24626cc33ba99468ea59001436c55efc2 100644
--- a/pdf/pdf.h
+++ b/pdf/pdf.h
@@ -13,11 +13,11 @@ namespace chrome_pdf {
class PDFModule : public pp::Module {
public:
PDFModule();
- virtual ~PDFModule();
+ ~PDFModule() override;
// pp::Module implementation.
- virtual bool Init();
- virtual pp::Instance* CreateInstance(PP_Instance instance);
+ bool Init() override;
+ pp::Instance* CreateInstance(PP_Instance instance) override;
};
int PPP_InitializeModule(PP_Module module_id,
« no previous file with comments | « pdf/out_of_process_instance.h ('k') | pdf/pdf.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698