| Index: chrome/browser/sync_file_system/drive_backend/drive_backend_util.h
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.h b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.h
|
| index d393776b464a430f345f07203c0219a3dba9171c..8231164161ac01cd8bb45bd50f636bd279a646fc 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.h
|
| +++ b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.h
|
| @@ -7,11 +7,11 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/sync_file_system/drive_backend/metadata_database.pb.h"
|
| #include "chrome/browser/sync_file_system/sync_status_code.h"
|
| #include "google_apis/drive/drive_api_error_codes.h"
|
| @@ -52,7 +52,7 @@ SyncStatusCode DriveApiErrorCodeToSyncStatusCode(
|
| bool RemovePrefix(const std::string& str, const std::string& prefix,
|
| std::string* out);
|
|
|
| -scoped_ptr<ServiceMetadata> InitializeServiceMetadata(LevelDBWrapper* db);
|
| +std::unique_ptr<ServiceMetadata> InitializeServiceMetadata(LevelDBWrapper* db);
|
|
|
| template <typename Src, typename Dest>
|
| void AppendContents(const Src& src, Dest* dest) {
|
|
|