| Index: third_party/WebKit/Source/core/inspector/InspectorStyleSheet.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.h b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.h
|
| index 761e85ab9c3078f26d137e29d263596943669e9a..f32e0b9a6a30a3bcd7adbab3355a98d1f33bb656 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.h
|
| @@ -35,6 +35,7 @@
|
| #include "wtf/RefPtr.h"
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -115,7 +116,7 @@ private:
|
|
|
| String m_id;
|
| Listener* m_listener;
|
| - OwnPtr<LineEndings> m_lineEndings;
|
| + std::unique_ptr<LineEndings> m_lineEndings;
|
| };
|
|
|
| class InspectorStyleSheet : public InspectorStyleSheetBase {
|
|
|