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

Unified Diff: chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation_unittest.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/drive/file_system/get_file_for_saving_operation_unittest.cc
diff --git a/chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation_unittest.cc b/chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation_unittest.cc
index 33afb12de357674831f3ca2d06bdeebad52abd29..cf2ee00ceb95b2ea584d2475d4b99d8e11b9f234 100644
--- a/chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation_unittest.cc
+++ b/chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation_unittest.cc
@@ -36,7 +36,7 @@ class TestDelegate : public OperationDelegate {
}
// OperationDelegate overrides.
- virtual void OnEntryUpdatedByOperation(const std::string& local_id) OVERRIDE {
+ virtual void OnEntryUpdatedByOperation(const std::string& local_id) override {
updated_local_id_ = local_id;
if (!quit_closure_.is_null())
quit_closure_.Run();
@@ -56,7 +56,7 @@ class GetFileForSavingOperationTest : public OperationTestBase {
: OperationTestBase(content::TestBrowserThreadBundle::IO_MAINLOOP) {
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
OperationTestBase::SetUp();
operation_.reset(new GetFileForSavingOperation(

Powered by Google App Engine
This is Rietveld 408576698