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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc b/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
index e8e1b002d96182d54be40f90be4950d444f16483..70f8b320884580cfe1d860a8fb52ffa4ef5fb1d0 100644
--- a/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
+++ b/chrome/browser/chromeos/extensions/file_manager/file_browser_handler_api_test.cc
@@ -87,7 +87,7 @@ class MockFileSelector : public file_manager::FileSelector {
const base::FilePath& suggested_name,
const std::vector<std::string>& allowed_extensions,
Browser* browser,
- FileBrowserHandlerInternalSelectFileFunction* function) OVERRIDE {
+ FileBrowserHandlerInternalSelectFileFunction* function) override {
// Confirm that the function suggested us the right name.
EXPECT_EQ(suggested_name_, suggested_name);
// Confirm that the function allowed us the right extensions.
@@ -136,7 +136,7 @@ class MockFileSelectorFactory : public file_manager::FileSelectorFactory {
virtual ~MockFileSelectorFactory() {}
// file_manager::FileSelectorFactory implementation.
- virtual file_manager::FileSelector* CreateFileSelector() const OVERRIDE {
+ virtual file_manager::FileSelector* CreateFileSelector() const override {
return new MockFileSelector(suggested_name_,
allowed_extensions_,
success_,
@@ -159,7 +159,7 @@ class MockFileSelectorFactory : public file_manager::FileSelectorFactory {
// Extension api test for the fileBrowserHandler extension API.
class FileBrowserHandlerExtensionTest : public ExtensionApiTest {
protected:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
// Create mount point directory that will be used in the test.
// Mount point will be called "tmp", and it will be located in a tmp
// directory with an unique name.

Powered by Google App Engine
This is Rietveld 408576698