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

Unified Diff: remoting/client/plugin/chromoting_scriptable_object.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « remoting/base/decompressor_zlib.h ('k') | remoting/client/plugin/pepper_input_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/chromoting_scriptable_object.h
diff --git a/remoting/client/plugin/chromoting_scriptable_object.h b/remoting/client/plugin/chromoting_scriptable_object.h
index 235b3e6f4c932257046898c41130366156766782..1ca45fd932744b5285e1a7c417af8c9e6f8f1102 100644
--- a/remoting/client/plugin/chromoting_scriptable_object.h
+++ b/remoting/client/plugin/chromoting_scriptable_object.h
@@ -145,17 +145,17 @@ class ChromotingScriptableObject
virtual void Init();
// Override the ScriptableObject functions.
- virtual bool HasProperty(const pp::Var& name, pp::Var* exception);
- virtual bool HasMethod(const pp::Var& name, pp::Var* exception);
- virtual pp::Var GetProperty(const pp::Var& name, pp::Var* exception);
+ virtual bool HasProperty(const pp::Var& name, pp::Var* exception) OVERRIDE;
+ virtual bool HasMethod(const pp::Var& name, pp::Var* exception) OVERRIDE;
+ virtual pp::Var GetProperty(const pp::Var& name, pp::Var* exception) OVERRIDE;
virtual void GetAllPropertyNames(std::vector<pp::Var>* properties,
- pp::Var* exception);
+ pp::Var* exception) OVERRIDE;
virtual void SetProperty(const pp::Var& name,
const pp::Var& value,
- pp::Var* exception);
+ pp::Var* exception) OVERRIDE;
virtual pp::Var Call(const pp::Var& method_name,
const std::vector<pp::Var>& args,
- pp::Var* exception);
+ pp::Var* exception) OVERRIDE;
void SetConnectionStatus(ConnectionStatus status, ConnectionError error);
void LogDebugInfo(const std::string& info);
« no previous file with comments | « remoting/base/decompressor_zlib.h ('k') | remoting/client/plugin/pepper_input_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698