| Index: content/browser/indexed_db/indexed_db_dispatcher_host.h
 | 
| ===================================================================
 | 
| --- content/browser/indexed_db/indexed_db_dispatcher_host.h	(revision 271040)
 | 
| +++ content/browser/indexed_db/indexed_db_dispatcher_host.h	(working copy)
 | 
| @@ -62,8 +62,7 @@
 | 
|    virtual void OnDestruct() const OVERRIDE;
 | 
|    virtual base::TaskRunner* OverrideTaskRunnerForMessage(
 | 
|        const IPC::Message& message) OVERRIDE;
 | 
| -  virtual bool OnMessageReceived(const IPC::Message& message,
 | 
| -                                 bool* message_was_ok) OVERRIDE;
 | 
| +  virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
 | 
|  
 | 
|    void FinishTransaction(int64 host_transaction_id, bool committed);
 | 
|  
 | 
| @@ -176,7 +175,7 @@
 | 
|      ~DatabaseDispatcherHost();
 | 
|  
 | 
|      void CloseAll();
 | 
| -    bool OnMessageReceived(const IPC::Message& message, bool* msg_is_ok);
 | 
| +    bool OnMessageReceived(const IPC::Message& message);
 | 
|  
 | 
|      void OnCreateObjectStore(
 | 
|          const IndexedDBHostMsg_DatabaseCreateObjectStore_Params& params);
 | 
| @@ -231,7 +230,7 @@
 | 
|      explicit CursorDispatcherHost(IndexedDBDispatcherHost* parent);
 | 
|      ~CursorDispatcherHost();
 | 
|  
 | 
| -    bool OnMessageReceived(const IPC::Message& message, bool* msg_is_ok);
 | 
| +    bool OnMessageReceived(const IPC::Message& message);
 | 
|  
 | 
|      void OnAdvance(int32 ipc_object_store_id,
 | 
|                     int32 ipc_thread_id,
 | 
| 
 |