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

Unified Diff: Source/bindings/core/v8/V8BindingForTesting.h

Issue 1111163003: Replace v8::Handle<> with v8::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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/V8Binding.cpp ('k') | Source/bindings/core/v8/V8BindingForTesting.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8BindingForTesting.h
diff --git a/Source/bindings/core/v8/V8BindingForTesting.h b/Source/bindings/core/v8/V8BindingForTesting.h
index a5521b5eab856040788c8dec57fa8233df6de018..97625f4a04aeb5dbb08be9a0237a812f6375d255 100644
--- a/Source/bindings/core/v8/V8BindingForTesting.h
+++ b/Source/bindings/core/v8/V8BindingForTesting.h
@@ -15,11 +15,11 @@ namespace blink {
class ScriptStateForTesting : public ScriptState {
public:
- static PassRefPtr<ScriptStateForTesting> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
+ static PassRefPtr<ScriptStateForTesting> create(v8::Local<v8::Context>, PassRefPtr<DOMWrapperWorld>);
virtual ExecutionContext* executionContext() const override;
virtual void setExecutionContext(ExecutionContext*) override;
private:
- ScriptStateForTesting(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
+ ScriptStateForTesting(v8::Local<v8::Context>, PassRefPtr<DOMWrapperWorld>);
ExecutionContext* m_executionContext;
};
« no previous file with comments | « Source/bindings/core/v8/V8Binding.cpp ('k') | Source/bindings/core/v8/V8BindingForTesting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698