diff options
author | mostynb <mostynb@opera.com> | 2014-10-06 08:04:46 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-06 15:05:09 +0000 |
commit | fe59f48c251e124f4b896e589cb635979bb2f1fb (patch) | |
tree | 7b07cb56427dfe63f2775683555da84a557aeb90 /components/json_schema | |
parent | 4749549c06525071692f777fc6a1fa5a9ad7f877 (diff) | |
download | chromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.zip chromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.tar.gz chromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.tar.bz2 |
replace OVERRIDE and FINAL with override and final in components/
BUG=417463
Review URL: https://codereview.chromium.org/623133002
Cr-Commit-Position: refs/heads/master@{#298237}
Diffstat (limited to 'components/json_schema')
-rw-r--r-- | components/json_schema/json_schema_validator_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/json_schema/json_schema_validator_unittest.cc b/components/json_schema/json_schema_validator_unittest.cc index aaa2555..134e5fc 100644 --- a/components/json_schema/json_schema_validator_unittest.cc +++ b/components/json_schema/json_schema_validator_unittest.cc @@ -15,7 +15,7 @@ class JSONSchemaValidatorCPPTest : public JSONSchemaValidatorTestBase { virtual void ExpectValid(const std::string& test_source, base::Value* instance, base::DictionaryValue* schema, - base::ListValue* types) OVERRIDE { + base::ListValue* types) override { JSONSchemaValidator validator(schema, types); if (validator.Validate(instance)) return; @@ -32,7 +32,7 @@ class JSONSchemaValidatorCPPTest : public JSONSchemaValidatorTestBase { base::Value* instance, base::DictionaryValue* schema, base::ListValue* types, const std::string& expected_error_path, - const std::string& expected_error_message) OVERRIDE { + const std::string& expected_error_message) override { JSONSchemaValidator validator(schema, types); if (validator.Validate(instance)) { ADD_FAILURE() << test_source; |