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

Unified Diff: Source/core/testing/GCObservation.h

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 | « no previous file | Source/core/testing/GCObservation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/GCObservation.h
diff --git a/Source/core/testing/GCObservation.h b/Source/core/testing/GCObservation.h
index 1c4831112c53d1eb14461565a03a560b65661614..b9fccb1d60df3f3f87efb510fddd7ae7559fd975 100644
--- a/Source/core/testing/GCObservation.h
+++ b/Source/core/testing/GCObservation.h
@@ -43,7 +43,7 @@ namespace blink {
class GCObservation final : public GarbageCollectedFinalized<GCObservation>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static GCObservation* create(v8::Handle<v8::Value> observedValue)
+ static GCObservation* create(v8::Local<v8::Value> observedValue)
{
return new GCObservation(observedValue);
}
@@ -58,7 +58,7 @@ public:
DEFINE_INLINE_TRACE() { }
private:
- explicit GCObservation(v8::Handle<v8::Value>);
+ explicit GCObservation(v8::Local<v8::Value>);
ScopedPersistent<v8::Value> m_observed;
bool m_collected;
« no previous file with comments | « no previous file | Source/core/testing/GCObservation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698