| Index: Source/core/inspector/InspectorFileSystemAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorFileSystemAgent.cpp b/Source/core/inspector/InspectorFileSystemAgent.cpp
|
| index e968a1b04b9eea871ba9e8623fb680235e8b92bc..e98e62fc5ee2f360100d1ac583cef2089d6e4ee9 100644
|
| --- a/Source/core/inspector/InspectorFileSystemAgent.cpp
|
| +++ b/Source/core/inspector/InspectorFileSystemAgent.cpp
|
| @@ -89,9 +89,9 @@ public:
|
| return adoptPtr(new CallbackDispatcher(handler, handlingMethod));
|
| }
|
|
|
| - virtual bool handleEvent(Argument argument) OVERRIDE
|
| + virtual void handleEvent(Argument argument) OVERRIDE
|
| {
|
| - return (m_handler.get()->*m_handlingMethod)(argument);
|
| + (m_handler.get()->*m_handlingMethod)(argument);
|
| }
|
|
|
| private:
|
| @@ -519,9 +519,9 @@ private:
|
| {
|
| }
|
|
|
| - virtual bool handleEvent() OVERRIDE
|
| + virtual void handleEvent() OVERRIDE
|
| {
|
| - return m_handler->didDeleteEntry();
|
| + m_handler->didDeleteEntry();
|
| }
|
|
|
| private:
|
|
|