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

Unified Diff: content/renderer/v8_value_converter_impl.h

Issue 10387055: Support optional arguments in SendRequestNatives::StartRequest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated copyright header Created 8 years, 7 months 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
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(

Powered by Google App Engine
This is Rietveld 408576698