diff options
author | mostynb <mostynb@opera.com> | 2014-10-06 11:03:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-06 18:03:57 +0000 |
commit | 699af3cc7b6ff86f5f8e54d3234650c34dd104d4 (patch) | |
tree | e6b3b4770ffa012adbd071aaf84a4467dc6ac59d /ppapi/shared_impl/dictionary_var.h | |
parent | 59a81093b9272c0e7b87a4a39bfe29b764511fa0 (diff) | |
download | chromium_src-699af3cc7b6ff86f5f8e54d3234650c34dd104d4.zip chromium_src-699af3cc7b6ff86f5f8e54d3234650c34dd104d4.tar.gz chromium_src-699af3cc7b6ff86f5f8e54d3234650c34dd104d4.tar.bz2 |
replace OVERRIDE and FINAL with override and final in ppapi/
R=dmichael@chromium.org,dcheng@chromium.org
BUG=417463
Review URL: https://codereview.chromium.org/630883002
Cr-Commit-Position: refs/heads/master@{#298269}
Diffstat (limited to 'ppapi/shared_impl/dictionary_var.h')
-rw-r--r-- | ppapi/shared_impl/dictionary_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/shared_impl/dictionary_var.h b/ppapi/shared_impl/dictionary_var.h index 728bae1..628fdee 100644 --- a/ppapi/shared_impl/dictionary_var.h +++ b/ppapi/shared_impl/dictionary_var.h @@ -29,8 +29,8 @@ class PPAPI_SHARED_EXPORT DictionaryVar : public Var { static DictionaryVar* FromPPVar(const PP_Var& var); // Var overrides. - virtual DictionaryVar* AsDictionaryVar() OVERRIDE; - virtual PP_VarType GetType() const OVERRIDE; + virtual DictionaryVar* AsDictionaryVar() override; + virtual PP_VarType GetType() const override; // The returned PP_Var has had a ref added on behalf of the caller. PP_Var Get(const PP_Var& key) const; |