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

Unified Diff: chrome/browser/diagnostics/sqlite_diagnostics.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/diagnostics/sqlite_diagnostics.cc
diff --git a/chrome/browser/diagnostics/sqlite_diagnostics.cc b/chrome/browser/diagnostics/sqlite_diagnostics.cc
index f8351fd50d15bdba0fbf66859857446bbadb84f5..0c38718e418b4b23292758e6f881ddb017ca883a 100644
--- a/chrome/browser/diagnostics/sqlite_diagnostics.cc
+++ b/chrome/browser/diagnostics/sqlite_diagnostics.cc
@@ -44,7 +44,7 @@ class SqliteIntegrityTest : public DiagnosticsTest {
const base::FilePath& db_path)
: DiagnosticsTest(id), flags_(flags), db_path_(db_path) {}
- virtual bool RecoveryImpl(DiagnosticsModel::Observer* observer) OVERRIDE {
+ virtual bool RecoveryImpl(DiagnosticsModel::Observer* observer) override {
int outcome_code = GetOutcomeCode();
if (flags_ & REMOVE_IF_CORRUPT) {
switch (outcome_code) {
@@ -69,7 +69,7 @@ class SqliteIntegrityTest : public DiagnosticsTest {
return true;
}
- virtual bool ExecuteImpl(DiagnosticsModel::Observer* observer) OVERRIDE {
+ virtual bool ExecuteImpl(DiagnosticsModel::Observer* observer) override {
// If we're given an absolute path, use it. If not, then assume it's under
// the profile directory.
base::FilePath path;
« no previous file with comments | « chrome/browser/diagnostics/recon_diagnostics.cc ('k') | chrome/browser/dom_distiller/dom_distiller_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698