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

Side by Side Diff: content/public/renderer/v8_value_converter.h

Issue 10890002: Make V8ValueConverter.FromV8Value behave similarly to JSON.stringify (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no more function Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_
6 #define CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_ 6 #define CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "v8/include/v8.h" 9 #include "v8/include/v8.h"
10 10
(...skipping 10 matching lines...) Expand all
21 // The JSON types (null, boolean, string, number, array, and object) as well as 21 // The JSON types (null, boolean, string, number, array, and object) as well as
22 // binary values are supported. For binary values, we convert to WebKit 22 // binary values are supported. For binary values, we convert to WebKit
23 // ArrayBuffers, and support converting from an ArrayBuffer or any of the 23 // ArrayBuffers, and support converting from an ArrayBuffer or any of the
24 // ArrayBufferView subclasses (Uint8Array, etc.). 24 // ArrayBufferView subclasses (Uint8Array, etc.).
25 class CONTENT_EXPORT V8ValueConverter { 25 class CONTENT_EXPORT V8ValueConverter {
26 public: 26 public:
27 static V8ValueConverter* create(); 27 static V8ValueConverter* create();
28 28
29 virtual ~V8ValueConverter() {} 29 virtual ~V8ValueConverter() {}
30 30
31 // Use the following setters to support additional types other than the 31 // If true, Date objects are converted into DoubleValues with the number of
32 // default ones. 32 // seconds since Unix epoch.
33 virtual bool GetUndefinedAllowed() const = 0; 33 //
34 virtual void SetUndefinedAllowed(bool val) = 0; 34 // Otherwise they are converted into DictionaryValues with whatever additional
35 35 // properties has been set on them.
36 virtual bool GetDateAllowed() const = 0;
37 virtual void SetDateAllowed(bool val) = 0; 36 virtual void SetDateAllowed(bool val) = 0;
38 37
39 virtual bool GetRegexpAllowed() const = 0; 38 // If true, RegExp objects are converted into StringValues with the regular
40 virtual void SetRegexpAllowed(bool val) = 0; 39 // expression between / and /, for example "/ab?c/".
40 //
41 // Otherwise they are converted into DictionaryValues with whatever additional
42 // properties has been set on them.
43 virtual void SetRegExpAllowed(bool val) = 0;
41 44
42 // Gets/sets whether to treat undefined or null in objects as nonexistent. 45 // If true, Function objects are converted into DictionaryValues with whatever
43 virtual bool GetStripNullFromObjects() const = 0; 46 // additional properties has been set on them.
47 //
48 // Otherwise they are treated as unsupported, see FromV8Value.
49 virtual void SetFunctionAllowed(bool val) = 0;
50
51 // If true, null values are stripped from objects. This is often useful when
52 // converting arguments to extension APIs.
44 virtual void SetStripNullFromObjects(bool val) = 0; 53 virtual void SetStripNullFromObjects(bool val) = 0;
45 54
46 // Converts Value to v8::Value. Unsupported types are replaced with null. 55 // Converts a base::Value to a v8::Value.
47 // If an array or object throws while setting a value, that property or item 56 //
48 // is skipped, leaving a hole in the case of arrays. 57 // Unsupported types are replaced with null. If an array or object throws
58 // while setting a value, that property or item is skipped, leaving a hole in
59 // the case of arrays.
49 virtual v8::Handle<v8::Value> ToV8Value( 60 virtual v8::Handle<v8::Value> ToV8Value(
50 const base::Value* value, 61 const base::Value* value,
51 v8::Handle<v8::Context> context) const = 0; 62 v8::Handle<v8::Context> context) const = 0;
52 63
53 // Converts v8::Value to Value. Unsupported types are replaced with null. 64 // Converts a v8::Value to base::Value.
54 // If an array or object throws while getting a value, that property or item 65 //
55 // is replaced with null. 66 // Unsupported types (unless explicitly configured) are not converted, so
67 // this method may return NULL -- the exception is when converting arrays,
68 // where unsupported types are converted to Value(TYPE_NULL).
69 //
70 // Likewise, if an object throws while converting a property it will not be
71 // converted, whereas if an array throws while converting an item it will be
72 // converted to Value(TYPE_NULL).
56 virtual base::Value* FromV8Value(v8::Handle<v8::Value> value, 73 virtual base::Value* FromV8Value(v8::Handle<v8::Value> value,
57 v8::Handle<v8::Context> context) const = 0; 74 v8::Handle<v8::Context> context) const = 0;
58 }; 75 };
59 76
60 } // namespace content 77 } // namespace content
61 78
62 #endif // CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_ 79 #endif // CONTENT_PUBLIC_RENDERER_V8_VALUE_CONVERTER_H_
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/settings/simple_test/background.js ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698