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

Unified Diff: chrome/browser/file_select_helper.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/file_select_helper.h
diff --git a/chrome/browser/file_select_helper.h b/chrome/browser/file_select_helper.h
index 471e3e558ccd53cc093a8b893d3f150270f8502c..324afadf2ee99090509de00a660d25182586d999 100644
--- a/chrome/browser/file_select_helper.h
+++ b/chrome/browser/file_select_helper.h
@@ -55,10 +55,10 @@ class FileSelectHelper
id_(id) {}
virtual ~DirectoryListerDispatchDelegate() {}
virtual void OnListFile(
- const net::DirectoryLister::DirectoryListerData& data) {
+ const net::DirectoryLister::DirectoryListerData& data) OVERRIDE {
parent_->OnListFile(id_, data);
}
- virtual void OnListDone(int error) {
+ virtual void OnListDone(int error) OVERRIDE {
parent_->OnListDone(id_, error);
}
private:

Powered by Google App Engine
This is Rietveld 408576698