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

Unified Diff: Source/bindings/v8/ScriptScope.cpp

Issue 23788005: Remove calls to HandleScope default ctor. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review (pfeldman) Created 7 years, 3 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/v8/ScriptHeapSnapshot.cpp ('k') | Source/bindings/v8/ScriptState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/ScriptScope.cpp
diff --git a/Source/bindings/v8/ScriptScope.cpp b/Source/bindings/v8/ScriptScope.cpp
index 248990f0f64394fc0e2b849f8a959f7a88c98bcf..70815114caed8a6d0aa82c929af77d6e1a50b73f 100644
--- a/Source/bindings/v8/ScriptScope.cpp
+++ b/Source/bindings/v8/ScriptScope.cpp
@@ -39,7 +39,8 @@
namespace WebCore {
ScriptScope::ScriptScope(ScriptState* scriptState, bool reportExceptions)
- : m_context(scriptState->context())
+ : m_handleScope(scriptState->isolate())
+ , m_context(scriptState->context())
, m_scope(m_context)
{
m_exceptionCatcher.SetVerbose(reportExceptions);
« no previous file with comments | « Source/bindings/v8/ScriptHeapSnapshot.cpp ('k') | Source/bindings/v8/ScriptState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698