| Index: Source/core/html/shadow/MediaControls.cpp
|
| diff --git a/Source/core/html/shadow/MediaControls.cpp b/Source/core/html/shadow/MediaControls.cpp
|
| index bb3c8c2befcdad3a5a36532af4214bbfbd7b8fa0..03614cb8dbac52a68bc7e9f5c7cc47121333da12 100644
|
| --- a/Source/core/html/shadow/MediaControls.cpp
|
| +++ b/Source/core/html/shadow/MediaControls.cpp
|
| @@ -59,7 +59,7 @@ MediaControls::MediaControls(Document& document)
|
| PassRefPtr<MediaControls> MediaControls::create(Document& document)
|
| {
|
| if (!document.page())
|
| - return 0;
|
| + return nullptr;
|
|
|
| RefPtr<MediaControls> controls;
|
| #if OS(ANDROID)
|
| @@ -71,7 +71,7 @@ PassRefPtr<MediaControls> MediaControls::create(Document& document)
|
| if (controls->initializeControls(document))
|
| return controls.release();
|
|
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| bool MediaControls::initializeControls(Document& document)
|
|
|