diff options
author | r.nagaraj <r.nagaraj@samsung.com> | 2014-10-14 23:16:21 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-15 06:18:04 +0000 |
commit | 3a4c5c75a03b01316587f72517b9f676e766e383 (patch) | |
tree | 2c8645963ac73b6640d78cb9bec640261a2a7c95 /sql | |
parent | b7eaedbe00563a29a785176eb915edc95f0877d5 (diff) | |
download | chromium_src-3a4c5c75a03b01316587f72517b9f676e766e383.zip chromium_src-3a4c5c75a03b01316587f72517b9f676e766e383.tar.gz chromium_src-3a4c5c75a03b01316587f72517b9f676e766e383.tar.bz2 |
Replace OVERRIDE with its C++11 counterparts in src/sql
This step is a complete search for OVERRIDE to
replace it with its lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/639753004
Cr-Commit-Position: refs/heads/master@{#299655}
Diffstat (limited to 'sql')
-rw-r--r-- | sql/test/sql_test_suite.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/test/sql_test_suite.h b/sql/test/sql_test_suite.h index 3c15373..a9663fc 100644 --- a/sql/test/sql_test_suite.h +++ b/sql/test/sql_test_suite.h @@ -17,8 +17,8 @@ class SQLTestSuite : public base::TestSuite { protected: // Overridden from base::TestSuite: - virtual void Initialize() OVERRIDE; - virtual void Shutdown() OVERRIDE; + virtual void Initialize() override; + virtual void Shutdown() override; private: DISALLOW_COPY_AND_ASSIGN(SQLTestSuite); |