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

Unified Diff: Source/web/WebFileChooserCompletionImpl.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 11 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
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.h ('k') | Source/web/WebFontImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFileChooserCompletionImpl.h
diff --git a/Source/web/WebFileChooserCompletionImpl.h b/Source/web/WebFileChooserCompletionImpl.h
index dd43c305274178c514facc61af18d828539a034f..7fa1a1765c4a27819ca1508b8f1e6d83e8cf801b 100644
--- a/Source/web/WebFileChooserCompletionImpl.h
+++ b/Source/web/WebFileChooserCompletionImpl.h
@@ -43,12 +43,12 @@ using blink::WebVector;
namespace blink {
-class WebFileChooserCompletionImpl : public WebFileChooserCompletion {
+class WebFileChooserCompletionImpl FINAL : public WebFileChooserCompletion {
public:
WebFileChooserCompletionImpl(PassRefPtr<WebCore::FileChooser> chooser);
- ~WebFileChooserCompletionImpl();
- virtual void didChooseFile(const WebVector<WebString>& fileNames);
- virtual void didChooseFile(const WebVector<SelectedFileInfo>& files);
+ virtual ~WebFileChooserCompletionImpl();
+ virtual void didChooseFile(const WebVector<WebString>& fileNames) OVERRIDE;
+ virtual void didChooseFile(const WebVector<SelectedFileInfo>& files) OVERRIDE;
private:
RefPtr<WebCore::FileChooser> m_fileChooser;
};
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.h ('k') | Source/web/WebFontImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698