summaryrefslogtreecommitdiffstats
path: root/content/renderer/v8_value_converter_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/v8_value_converter_impl.h')
-rw-r--r--content/renderer/v8_value_converter_impl.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/content/renderer/v8_value_converter_impl.h b/content/renderer/v8_value_converter_impl.h
index affbed7..7cf4da0 100644
--- a/content/renderer/v8_value_converter_impl.h
+++ b/content/renderer/v8_value_converter_impl.h
@@ -26,17 +26,17 @@ class CONTENT_EXPORT V8ValueConverterImpl : public V8ValueConverter {
V8ValueConverterImpl();
// V8ValueConverter implementation.
- virtual void SetDateAllowed(bool val) OVERRIDE;
- virtual void SetRegExpAllowed(bool val) OVERRIDE;
- virtual void SetFunctionAllowed(bool val) OVERRIDE;
- virtual void SetStripNullFromObjects(bool val) OVERRIDE;
- virtual void SetStrategy(Strategy* strategy) OVERRIDE;
+ virtual void SetDateAllowed(bool val) override;
+ virtual void SetRegExpAllowed(bool val) override;
+ virtual void SetFunctionAllowed(bool val) override;
+ virtual void SetStripNullFromObjects(bool val) override;
+ virtual void SetStrategy(Strategy* strategy) override;
virtual v8::Handle<v8::Value> ToV8Value(
const base::Value* value,
- v8::Handle<v8::Context> context) const OVERRIDE;
+ v8::Handle<v8::Context> context) const override;
virtual base::Value* FromV8Value(
v8::Handle<v8::Value> value,
- v8::Handle<v8::Context> context) const OVERRIDE;
+ v8::Handle<v8::Context> context) const override;
private:
friend class ScopedAvoidIdentityHashForTesting;