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

Unified Diff: Source/core/testing/Internals.cpp

Issue 1103273014: Replace v8::Handle with v8::Local in core/testing/* (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/testing/GCObservation.cpp ('k') | Source/core/testing/PrivateScriptTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index 1409a16ed29bdca9f80b3498aee488f9451f8982..658cbabec7e1b8a367d2f835c0c565af9b653765 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -269,7 +269,7 @@ String Internals::address(Node* node)
GCObservation* Internals::observeGC(ScriptValue scriptValue)
{
- v8::Handle<v8::Value> observedValue = scriptValue.v8Value();
+ v8::Local<v8::Value> observedValue = scriptValue.v8Value();
ASSERT(!observedValue.IsEmpty());
if (observedValue->IsNull() || observedValue->IsUndefined()) {
V8ThrowException::throwTypeError(v8::Isolate::GetCurrent(), "value to observe is null or undefined");
@@ -2090,7 +2090,7 @@ namespace {
class AddOneFunction : public ScriptFunction {
public:
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState)
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState)
{
AddOneFunction* self = new AddOneFunction(scriptState);
return self->bindToV8Function();
« no previous file with comments | « Source/core/testing/GCObservation.cpp ('k') | Source/core/testing/PrivateScriptTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698