| Index: content/public/test/mock_blob_url_request_context.h
|
| diff --git a/content/public/test/mock_blob_url_request_context.h b/content/public/test/mock_blob_url_request_context.h
|
| index 41aba90f283f761ca757e335ccbddd28146b8462..fdf46fa57632bdeea53511d8d8f8886ed872f892 100644
|
| --- a/content/public/test/mock_blob_url_request_context.h
|
| +++ b/content/public/test/mock_blob_url_request_context.h
|
| @@ -32,7 +32,7 @@ class MockBlobURLRequestContext : public net::URLRequestContext {
|
|
|
| private:
|
| net::URLRequestJobFactoryImpl job_factory_;
|
| - scoped_ptr<storage::BlobStorageContext> blob_storage_context_;
|
| + std::unique_ptr<storage::BlobStorageContext> blob_storage_context_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MockBlobURLRequestContext);
|
| };
|
| @@ -46,12 +46,12 @@ class ScopedTextBlob {
|
| ~ScopedTextBlob();
|
|
|
| // Returns a BlobDataHandle referring to the scoped blob.
|
| - scoped_ptr<storage::BlobDataHandle> GetBlobDataHandle();
|
| + std::unique_ptr<storage::BlobDataHandle> GetBlobDataHandle();
|
|
|
| private:
|
| const std::string blob_id_;
|
| storage::BlobStorageContext* context_;
|
| - scoped_ptr<storage::BlobDataHandle> handle_;
|
| + std::unique_ptr<storage::BlobDataHandle> handle_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ScopedTextBlob);
|
| };
|
|
|