summaryrefslogtreecommitdiffstats
path: root/ios
diff options
context:
space:
mode:
authoranujk.sharma <anujk.sharma@samsung.com>2014-10-07 06:00:33 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 13:00:56 +0000
commitcad9df6c5a33f1d48945fc81fe08fad9de25ce34 (patch)
treeb3ba7c185772eab1c93507e72ce1ae8558451a99 /ios
parent4beedfa803b4dbbea76a941d14dd0cec6912099d (diff)
downloadchromium_src-cad9df6c5a33f1d48945fc81fe08fad9de25ce34.zip
chromium_src-cad9df6c5a33f1d48945fc81fe08fad9de25ce34.tar.gz
chromium_src-cad9df6c5a33f1d48945fc81fe08fad9de25ce34.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in /src/ios
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/635523002 Cr-Commit-Position: refs/heads/master@{#298448}
Diffstat (limited to 'ios')
-rw-r--r--ios/consumer/base/supports_user_data_unittest.cc4
-rw-r--r--ios/public/test/fake_profile_oauth2_token_service_ios_provider.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/ios/consumer/base/supports_user_data_unittest.cc b/ios/consumer/base/supports_user_data_unittest.cc
index 1aeb417..ee31845 100644
--- a/ios/consumer/base/supports_user_data_unittest.cc
+++ b/ios/consumer/base/supports_user_data_unittest.cc
@@ -38,7 +38,7 @@ class TestSupportsUserData : public SupportsUserData {
class SupportsUserDataTest : public PlatformTest {
public:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
PlatformTest::SetUp();
test_data1_was_destroyed_ = false;
@@ -48,7 +48,7 @@ class SupportsUserDataTest : public PlatformTest {
supports_user_data_.reset(new TestSupportsUserData());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
if (!test_data1_was_destroyed_ &&
supports_user_data_ &&
supports_user_data_->GetUserData(kTestData1Key) != test_data1_)
diff --git a/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h b/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
index a3ae09d..0fdd493 100644
--- a/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
+++ b/ios/public/test/fake_profile_oauth2_token_service_ios_provider.h
@@ -22,18 +22,18 @@ class FakeProfileOAuth2TokenServiceIOSProvider
virtual ~FakeProfileOAuth2TokenServiceIOSProvider();
// ProfileOAuth2TokenServiceIOSProvider
- virtual void InitializeSharedAuthentication() OVERRIDE;
+ virtual void InitializeSharedAuthentication() override;
virtual void GetAccessToken(const std::string& account_id,
const std::string& client_id,
const std::string& client_secret,
const std::set<std::string>& scopes,
- const AccessTokenCallback& callback) OVERRIDE;
+ const AccessTokenCallback& callback) override;
- virtual std::vector<std::string> GetAllAccountIds() OVERRIDE;
+ virtual std::vector<std::string> GetAllAccountIds() override;
virtual AuthenticationErrorCategory GetAuthenticationErrorCategory(
- NSError* error) const OVERRIDE;
+ NSError* error) const override;
// Methods to configure this fake provider.
void AddAccount(const std::string& account_id);