| Index: Source/bindings/v8/ScriptController.cpp
|
| diff --git a/Source/bindings/v8/ScriptController.cpp b/Source/bindings/v8/ScriptController.cpp
|
| index 59e3c324b23823fbde2d790863a2676e4499660d..813aade3bcf25d424dbddbc4059bfacdb18b7c8d 100644
|
| --- a/Source/bindings/v8/ScriptController.cpp
|
| +++ b/Source/bindings/v8/ScriptController.cpp
|
| @@ -318,11 +318,11 @@ PassRefPtr<SharedPersistent<v8::Object> > ScriptController::createPluginWrapper(
|
| ASSERT(widget);
|
|
|
| if (!widget->isPluginView())
|
| - return 0;
|
| + return nullptr;
|
|
|
| NPObject* npObject = toPluginView(widget)->scriptableObject();
|
| if (!npObject)
|
| - return 0;
|
| + return nullptr;
|
|
|
| // Frame Memory Management for NPObjects
|
| // -------------------------------------
|
|
|