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

Unified Diff: content/renderer/pepper/v8_var_converter.h

Issue 421963008: Add PepperTryCatch and V8ObjectVar classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
« no previous file with comments | « content/renderer/pepper/pepper_try_catch.cc ('k') | content/renderer/pepper/v8_var_converter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/v8_var_converter.h
diff --git a/content/renderer/pepper/v8_var_converter.h b/content/renderer/pepper/v8_var_converter.h
index 42ef7a647f5dc8c4510f999b99523575b7877fc7..e6206cd95820497506b08f122a9726da684f924f 100644
--- a/content/renderer/pepper/v8_var_converter.h
+++ b/content/renderer/pepper/v8_var_converter.h
@@ -22,6 +22,8 @@ class ResourceConverter;
class CONTENT_EXPORT V8VarConverter {
public:
explicit V8VarConverter(PP_Instance instance);
+ V8VarConverter(PP_Instance instance, bool object_vars_allowed);
+
// Constructor for testing.
V8VarConverter(PP_Instance instance,
scoped_ptr<ResourceConverter> resource_converter);
@@ -71,6 +73,11 @@ class CONTENT_EXPORT V8VarConverter {
v8::Handle<v8::Context> context,
ppapi::ScopedPPVar* result_var);
+ PP_Instance instance_;
+
+ // Whether or not to support conversion to PP_VARTYPE_OBJECT.
+ bool object_vars_allowed_;
+
// The message loop to run the callback to |FromV8Value| from.
scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
« no previous file with comments | « content/renderer/pepper/pepper_try_catch.cc ('k') | content/renderer/pepper/v8_var_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698