| Index: content/renderer/v8_value_converter_impl.h
|
| diff --git a/content/renderer/v8_value_converter_impl.h b/content/renderer/v8_value_converter_impl.h
|
| index affbed7353fc42638e5d0d80d63a9606a38b49b2..7cf4da0014b7c4db92639c3e56ab0e765d832ec0 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;
|
|
|