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

Side by Side Diff: Source/bindings/core/v8/ScriptValue.h

Issue 1021713003: [bindings] Let NativeValueTraits<T>::nativeValue be variadic function and merge various convers… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: IDB related changes alone. Created 5 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class JSONValue; 45 class JSONValue;
46 46
47 class CORE_EXPORT ScriptValue final { 47 class CORE_EXPORT ScriptValue final {
48 public: 48 public:
49 template<typename T> 49 template<typename T>
50 static ScriptValue from(ScriptState* scriptState, T value) 50 static ScriptValue from(ScriptState* scriptState, T value)
51 { 51 {
52 return ScriptValue(scriptState, toV8(value, scriptState->context()->Glob al(), scriptState->isolate())); 52 return ScriptValue(scriptState, toV8(value, scriptState->context()->Glob al(), scriptState->isolate()));
53 } 53 }
54 54
55 template<typename T> 55 template<typename T, typename... Arguments>
56 inline T to(ExceptionState& exceptionState) const 56 static inline T to(v8::Isolate* isolate, const ScriptValue& value, Exception State& exceptionState, Arguments const&... arguments)
57 { 57 {
58 return NativeValueTraits<T>::nativeValue(isolate(), v8Value(), exception State); 58 return NativeValueTraits<T>::nativeValue(isolate, value.v8Value(), excep tionState, arguments...);
59 } 59 }
60 60
61 ScriptValue() { } 61 ScriptValue() { }
62 62
63 ScriptValue(ScriptState* scriptState, v8::Handle<v8::Value> value) 63 ScriptValue(ScriptState* scriptState, v8::Handle<v8::Value> value)
64 : m_scriptState(scriptState) 64 : m_scriptState(scriptState)
65 , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::creat e(value, scriptState->isolate())) 65 , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::creat e(value, scriptState->isolate()))
66 { 66 {
67 ASSERT(isEmpty() || m_scriptState); 67 ASSERT(isEmpty() || m_scriptState);
68 } 68 }
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 static ScriptValue createNull(ScriptState*); 158 static ScriptValue createNull(ScriptState*);
159 159
160 private: 160 private:
161 RefPtr<ScriptState> m_scriptState; 161 RefPtr<ScriptState> m_scriptState;
162 RefPtr<SharedPersistent<v8::Value>> m_value; 162 RefPtr<SharedPersistent<v8::Value>> m_value;
163 }; 163 };
164 164
165 } // namespace blink 165 } // namespace blink
166 166
167 #endif // ScriptValue_h 167 #endif // ScriptValue_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/NativeValueTraits.h ('k') | Source/bindings/modules/v8/V8BindingForModules.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698