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

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

Issue 1071963002: Replace Handle<> with Local<> in bindings/core/v8 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 // 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 #ifndef V8IteratorResultValue_h 5 #ifndef V8IteratorResultValue_h
6 #define V8IteratorResultValue_h 6 #define V8IteratorResultValue_h
7 7
8 #include "bindings/core/v8/ScriptValue.h" 8 #include "bindings/core/v8/ScriptValue.h"
9 #include "bindings/core/v8/ToV8.h" 9 #include "bindings/core/v8/ToV8.h"
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
11 #include <v8.h> 11 #include <v8.h>
12 12
13 namespace blink { 13 namespace blink {
14 14
15 CORE_EXPORT v8::Handle<v8::Object> v8IteratorResultValue(v8::Isolate*, bool done , v8::Handle<v8::Value>); 15 CORE_EXPORT v8::Local<v8::Object> v8IteratorResultValue(v8::Isolate*, bool done, v8::Local<v8::Value>);
16 16
17 template<typename T> 17 template<typename T>
18 inline ScriptValue v8IteratorResult(ScriptState* scriptState, const T& value) 18 inline ScriptValue v8IteratorResult(ScriptState* scriptState, const T& value)
19 { 19 {
20 return ScriptValue( 20 return ScriptValue(
21 scriptState, 21 scriptState,
22 v8IteratorResultValue( 22 v8IteratorResultValue(
23 scriptState->isolate(), 23 scriptState->isolate(),
24 false, 24 false,
25 toV8(value, scriptState->context()->Global(), scriptState->isolate() ))); 25 toV8(value, scriptState->context()->Global(), scriptState->isolate() )));
26 } 26 }
27 27
28 inline ScriptValue v8IteratorResultDone(ScriptState* scriptState) 28 inline ScriptValue v8IteratorResultDone(ScriptState* scriptState)
29 { 29 {
30 return ScriptValue( 30 return ScriptValue(
31 scriptState, 31 scriptState,
32 v8IteratorResultValue( 32 v8IteratorResultValue(
33 scriptState->isolate(), 33 scriptState->isolate(),
34 true, 34 true,
35 v8::Undefined(scriptState->isolate()))); 35 v8::Undefined(scriptState->isolate())));
36 } 36 }
37 37
38 } // namespace blink 38 } // namespace blink
39 39
40 #endif // V8IteratorResultValue_h 40 #endif // V8IteratorResultValue_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8HiddenValue.cpp ('k') | Source/bindings/core/v8/V8IteratorResultValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698