| Index: content/common/fileapi/webfilewriter_impl.h
 | 
| ===================================================================
 | 
| --- content/common/fileapi/webfilewriter_impl.h	(revision 183651)
 | 
| +++ content/common/fileapi/webfilewriter_impl.h	(working copy)
 | 
| @@ -5,6 +5,8 @@
 | 
|  #ifndef CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_
 | 
|  #define CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_
 | 
|  
 | 
| +#include <string>
 | 
| +
 | 
|  #include "base/memory/ref_counted.h"
 | 
|  #include "base/memory/weak_ptr.h"
 | 
|  #include "webkit/fileapi/webfilewriter_base.h"
 | 
| @@ -21,7 +23,7 @@
 | 
|   protected:
 | 
|    // WebFileWriterBase overrides
 | 
|    virtual void DoTruncate(const GURL& path, int64 offset) OVERRIDE;
 | 
| -  virtual void DoWrite(const GURL& path, const GURL& blob_url,
 | 
| +  virtual void DoWrite(const GURL& path, const std::string& blob_uuid,
 | 
|                         int64 offset) OVERRIDE;
 | 
|    virtual void DoCancel() OVERRIDE;
 | 
|  
 | 
| 
 |