| Index: chrome/browser/chromeos/display/overscan_calibrator.h
|
| diff --git a/chrome/browser/chromeos/display/overscan_calibrator.h b/chrome/browser/chromeos/display/overscan_calibrator.h
|
| index ba33914a1449d2d15933cde7936897bb2f73de42..4cd098264ea463efd1abcd4b1084d53467a38aeb 100644
|
| --- a/chrome/browser/chromeos/display/overscan_calibrator.h
|
| +++ b/chrome/browser/chromeos/display/overscan_calibrator.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_DISPLAY_OVERSCAN_CALIBRATOR_H_
|
| #define CHROME_BROWSER_CHROMEOS_DISPLAY_OVERSCAN_CALIBRATOR_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "ui/compositor/layer_delegate.h"
|
| #include "ui/gfx/display.h"
|
| #include "ui/gfx/geometry/insets.h"
|
| @@ -59,7 +60,7 @@ class OverscanCalibrator : public ui::LayerDelegate {
|
| bool committed_;
|
|
|
| // The visualization layer for the current calibration region.
|
| - scoped_ptr<ui::Layer> calibration_layer_;
|
| + std::unique_ptr<ui::Layer> calibration_layer_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OverscanCalibrator);
|
| };
|
|
|