| Index: extensions/browser/api/webcam_private/visca_webcam.h
|
| diff --git a/extensions/browser/api/webcam_private/visca_webcam.h b/extensions/browser/api/webcam_private/visca_webcam.h
|
| index 0afe201f210a5fdb6a94f638954e56280b52babd..fb18fcbba6017306f74f6e58cc2368c2eb001e0f 100644
|
| --- a/extensions/browser/api/webcam_private/visca_webcam.h
|
| +++ b/extensions/browser/api/webcam_private/visca_webcam.h
|
| @@ -114,13 +114,13 @@ class ViscaWebcam : public Webcam {
|
| const SetPTZCompleteCallback& callback) override;
|
|
|
| // Used only in unit tests in place of Open().
|
| - void OpenForTesting(scoped_ptr<SerialConnection> serial_connection);
|
| + void OpenForTesting(std::unique_ptr<SerialConnection> serial_connection);
|
|
|
| // Used only in unit tests to retrieve |serial_connection_| since this class
|
| // owns it.
|
| SerialConnection* GetSerialConnectionForTesting();
|
|
|
| - scoped_ptr<SerialConnection> serial_connection_;
|
| + std::unique_ptr<SerialConnection> serial_connection_;
|
|
|
| // Stores the response for the current command.
|
| std::vector<char> data_buffer_;
|
|
|