| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This file has been auto-generated by code_generator_v8.py. | 5 // This file has been auto-generated by code_generator_v8.py. |
| 6 // DO NOT MODIFY! | 6 // DO NOT MODIFY! |
| 7 | 7 |
| 8 // This file has been generated from the Jinja2 template in | 8 // This file has been generated from the Jinja2 template in |
| 9 // third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl | 9 // third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl |
| 10 | 10 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 argv, | 73 argv, |
| 74 isolate).ToLocal(&v8ReturnValue)) { | 74 isolate).ToLocal(&v8ReturnValue)) { |
| 75 return false; | 75 return false; |
| 76 } | 76 } |
| 77 | 77 |
| 78 return true; | 78 return true; |
| 79 } | 79 } |
| 80 | 80 |
| 81 VoidCallbackFunctionModules* NativeValueTraits<VoidCallbackFunctionModules>::Nat
iveValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& excep
tionState) { | 81 VoidCallbackFunctionModules* NativeValueTraits<VoidCallbackFunctionModules>::Nat
iveValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& excep
tionState) { |
| 82 VoidCallbackFunctionModules* nativeValue = VoidCallbackFunctionModules::Create
(ScriptState::Current(isolate), value); | 82 VoidCallbackFunctionModules* nativeValue = VoidCallbackFunctionModules::Create
(ScriptState::Current(isolate), value); |
| 83 if (!nativeValue) | 83 if (!nativeValue) { |
| 84 exceptionState.ThrowTypeError("Unable to convert value to VoidCallbackFuncti
onModules."); | 84 exceptionState.ThrowTypeError(ExceptionMessages::FailedToConvertJSValue( |
| 85 "VoidCallbackFunctionModules")); |
| 86 } |
| 85 return nativeValue; | 87 return nativeValue; |
| 86 } | 88 } |
| 87 | 89 |
| 88 } // namespace blink | 90 } // namespace blink |
| OLD | NEW |