| Index: components/printing/test/mock_printer.h
|
| diff --git a/components/printing/test/mock_printer.h b/components/printing/test/mock_printer.h
|
| index 37cae6c813b57348f7ebca067be46eb1a052b394..5eaba45b01f8c9e40a6b2c318c450c4f2cb204fd 100644
|
| --- a/components/printing/test/mock_printer.h
|
| +++ b/components/printing/test/mock_printer.h
|
| @@ -7,12 +7,12 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string16.h"
|
| #include "printing/image.h"
|
| #include "third_party/WebKit/public/web/WebPrintScalingOption.h"
|
| @@ -44,7 +44,7 @@ class MockPrinterPage : public base::RefCounted<MockPrinterPage> {
|
| virtual ~MockPrinterPage();
|
|
|
| uint32_t source_size_;
|
| - scoped_ptr<uint8_t[]> source_data_;
|
| + std::unique_ptr<uint8_t[]> source_data_;
|
| printing::Image image_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MockPrinterPage);
|
|
|