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

Unified Diff: Source/bindings/tests/results/V8TestObject.cpp

Issue 325143002: Oilpan: Prepare moving inspector script related classes to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 6 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/templates/methods.cpp ('k') | Source/bindings/v8/PageScriptDebugServer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/V8TestObject.cpp
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
index c85503898c50b59830b3700acaae7bcf6b7d5d72..e5d793504ec283212e6d744784f51e236aafb58c 100644
--- a/Source/bindings/tests/results/V8TestObject.cpp
+++ b/Source/bindings/tests/results/V8TestObject.cpp
@@ -7781,7 +7781,7 @@ static void callWithScriptStateScriptArgumentsVoidMethodMethod(const v8::Functio
{
TestObject* impl = V8TestObject::toNative(info.Holder());
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
- RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 0));
+ RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 0));
impl->callWithScriptStateScriptArgumentsVoidMethod(scriptState, scriptArguments.release());
}
@@ -7801,14 +7801,14 @@ static void callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArgMethod
V8RethrowTryCatchScope rethrow(block);
if (UNLIKELY(info.Length() <= 0)) {
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
- RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
+ RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
impl->callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(scriptState, scriptArguments.release());
return;
}
TONATIVE_VOID_INTERNAL(optionalBooleanArg, info[0]->BooleanValue());
}
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
- RefPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
+ RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, 1));
impl->callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(scriptState, scriptArguments.release(), optionalBooleanArg);
}
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/v8/PageScriptDebugServer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698