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

Unified Diff: Source/bindings/v8/V8Binding.h

Issue 295163005: Remove ScriptState::current() from IDBRequest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
Index: Source/bindings/v8/V8Binding.h
diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
index 10f7199ff2532dac6a1527b30c9b15c33d97f9d0..fe3ef0c474f0a82ab9db91096ec667a6703d4f13 100644
--- a/Source/bindings/v8/V8Binding.h
+++ b/Source/bindings/v8/V8Binding.h
@@ -923,13 +923,13 @@ private:
v8::Isolate* m_isolate;
};
-class V8ExecutionScope {
+class V8TestingScope {
public:
- static PassOwnPtr<V8ExecutionScope> create(v8::Isolate*);
- explicit V8ExecutionScope(v8::Isolate*);
+ static PassOwnPtr<V8TestingScope> create(v8::Isolate*);
+ explicit V8TestingScope(v8::Isolate*);
ScriptState* scriptState() const;
v8::Isolate* isolate() const;
- ~V8ExecutionScope();
+ ~V8TestingScope();
private:
v8::HandleScope m_handleScope;

Powered by Google App Engine
This is Rietveld 408576698