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); |