| Index: Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| index c692d796c191dde5bc82b49872aa627b7cef7a32..f297169b65c528f80f8f30d035e8b0a430d1e094 100644
|
| --- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| +++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| @@ -131,7 +131,7 @@ private:
|
|
|
| bool didGetEntry(Entry*);
|
|
|
| - void reportResult(FileError::ErrorCode errorCode, PassRefPtr<TypeBuilder::FileSystem::Entry> entry = 0)
|
| + void reportResult(FileError::ErrorCode errorCode, PassRefPtr<TypeBuilder::FileSystem::Entry> entry = nullptr)
|
| {
|
| m_requestCallback->sendSuccess(static_cast<int>(errorCode), entry);
|
| }
|
| @@ -202,7 +202,7 @@ private:
|
| bool didGetEntry(Entry*);
|
| bool didReadDirectoryEntries(const EntryVector&);
|
|
|
| - void reportResult(FileError::ErrorCode errorCode, PassRefPtr<Array<TypeBuilder::FileSystem::Entry> > entries = 0)
|
| + void reportResult(FileError::ErrorCode errorCode, PassRefPtr<Array<TypeBuilder::FileSystem::Entry> > entries = nullptr)
|
| {
|
| m_requestCallback->sendSuccess(static_cast<int>(errorCode), entries);
|
| }
|
| @@ -323,7 +323,7 @@ private:
|
| bool didGetEntry(Entry*);
|
| bool didGetMetadata(Metadata*);
|
|
|
| - void reportResult(FileError::ErrorCode errorCode, PassRefPtr<TypeBuilder::FileSystem::Metadata> metadata = 0)
|
| + void reportResult(FileError::ErrorCode errorCode, PassRefPtr<TypeBuilder::FileSystem::Metadata> metadata = nullptr)
|
| {
|
| m_requestCallback->sendSuccess(static_cast<int>(errorCode), metadata);
|
| }
|
|
|