[chromium-style] override / virtual warnings
This commit is contained in:
parent
a635f078c6
commit
e6695cf2ec
62 changed files with 106 additions and 106 deletions
|
@ -34,7 +34,7 @@ class PrintQueriesQueue;
|
|||
class PrintViewManagerBase : public content::NotificationObserver,
|
||||
public content::WebContentsObserver {
|
||||
public:
|
||||
virtual ~PrintViewManagerBase();
|
||||
~PrintViewManagerBase() override;
|
||||
|
||||
#if !defined(DISABLE_BASIC_PRINTING)
|
||||
// Prints the current document immediately. Since the rendering is
|
||||
|
@ -70,12 +70,12 @@ class PrintViewManagerBase : public content::NotificationObserver,
|
|||
|
||||
private:
|
||||
// content::NotificationObserver implementation.
|
||||
virtual void Observe(int type,
|
||||
const content::NotificationSource& source,
|
||||
const content::NotificationDetails& details) override;
|
||||
void Observe(int type,
|
||||
const content::NotificationSource& source,
|
||||
const content::NotificationDetails& details) override;
|
||||
|
||||
// Cancels the print job.
|
||||
virtual void NavigationStopped() override;
|
||||
void NavigationStopped() override;
|
||||
|
||||
// IPC Message handlers.
|
||||
void OnDidGetPrintedPagesCount(int cookie, int number_pages);
|
||||
|
|
|
@ -19,7 +19,7 @@ class PrintViewManagerBasic
|
|||
: public PrintViewManagerBase,
|
||||
public content::WebContentsUserData<PrintViewManagerBasic> {
|
||||
public:
|
||||
virtual ~PrintViewManagerBasic();
|
||||
~PrintViewManagerBasic() override;
|
||||
|
||||
#if defined(OS_ANDROID)
|
||||
// Sets the file descriptor into which the PDF will be written.
|
||||
|
|
|
@ -41,7 +41,7 @@ class PrintingMessageFilter : public content::BrowserMessageFilter {
|
|||
friend class base::DeleteHelper<PrintingMessageFilter>;
|
||||
friend class content::BrowserThread;
|
||||
|
||||
virtual ~PrintingMessageFilter();
|
||||
~PrintingMessageFilter() override;
|
||||
|
||||
void OnDestruct() const override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue