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 c43da46ab7489b42b0eac5369b47a107935a7fd1..89b79f09b347943c221f59717201ab5129b9ef46 100644 |
--- a/content/renderer/v8_value_converter_impl.h |
+++ b/content/renderer/v8_value_converter_impl.h |
@@ -22,14 +22,14 @@ class CONTENT_EXPORT V8ValueConverterImpl : public content::V8ValueConverter { |
// Use the following setters to support additional types other than the |
// default ones. |
- bool allow_undefined() const { return allow_undefined_; } |
- void set_allow_undefined(bool val) { allow_undefined_ = val; } |
+ virtual bool IsAllowIndefined() const OVERRIDE; |
+ virtual void SetAllowUndefined(bool val) OVERRIDE; |
- bool allow_date() const { return allow_date_; } |
- void set_allow_date(bool val) { allow_date_ = val; } |
+ virtual bool IsAllowDate() const OVERRIDE; |
+ virtual void SetAllowDate(bool val) OVERRIDE; |
- bool allow_regexp() const { return allow_regexp_; } |
- void set_allow_regexp(bool val) { allow_regexp_ = val; } |
+ virtual bool IsAllowRegexp() const OVERRIDE; |
+ virtual void SetAllowRegexp(bool val) OVERRIDE; |
// V8ValueConverter implementation. |
virtual v8::Handle<v8::Value> ToV8Value( |