| Index: Source/core/loader/EmptyClients.cpp
|
| diff --git a/Source/core/loader/EmptyClients.cpp b/Source/core/loader/EmptyClients.cpp
|
| index 928f2cdcf4d868b6af4696b0030c39eb3ee3a7fb..f8b76706f8f5296817e7aab053b7217fccaefa32 100644
|
| --- a/Source/core/loader/EmptyClients.cpp
|
| +++ b/Source/core/loader/EmptyClients.cpp
|
| @@ -125,17 +125,17 @@ PassRefPtr<DocumentLoader> EmptyFrameLoaderClient::createDocumentLoader(Frame* f
|
|
|
| PassRefPtr<Frame> EmptyFrameLoaderClient::createFrame(const KURL&, const AtomicString&, const Referrer&, HTMLFrameOwnerElement*)
|
| {
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| PassRefPtr<Widget> EmptyFrameLoaderClient::createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool)
|
| {
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| PassRefPtr<Widget> EmptyFrameLoaderClient::createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL&, const Vector<String>&, const Vector<String>&)
|
| {
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| void EmptyTextCheckerClient::requestCheckingOfString(PassRefPtr<TextCheckingRequest>)
|
|
|