| Index: chrome/browser/sync_file_system/local/sync_file_system_backend.h
 | 
| diff --git a/chrome/browser/sync_file_system/local/sync_file_system_backend.h b/chrome/browser/sync_file_system/local/sync_file_system_backend.h
 | 
| index 753fcf41c1e536707df8fd74322e3a1eb852f9b3..2e471bb40ecfa8879bb087c46dc5e975e7bbbb08 100644
 | 
| --- a/chrome/browser/sync_file_system/local/sync_file_system_backend.h
 | 
| +++ b/chrome/browser/sync_file_system/local/sync_file_system_backend.h
 | 
| @@ -7,6 +7,8 @@
 | 
|  
 | 
|  #include <stdint.h>
 | 
|  
 | 
| +#include <memory>
 | 
| +
 | 
|  #include "base/macros.h"
 | 
|  #include "chrome/browser/profiles/profile.h"
 | 
|  #include "chrome/browser/sync_file_system/sync_callbacks.h"
 | 
| @@ -28,7 +30,7 @@ class SyncFileSystemBackend : public storage::FileSystemBackend {
 | 
|    explicit SyncFileSystemBackend(Profile* profile);
 | 
|    ~SyncFileSystemBackend() override;
 | 
|  
 | 
| -  static SyncFileSystemBackend* CreateForTesting();
 | 
| +  static std::unique_ptr<SyncFileSystemBackend> CreateForTesting();
 | 
|  
 | 
|    // FileSystemBackend overrides.
 | 
|    bool CanHandleType(storage::FileSystemType type) const override;
 | 
| 
 |