| Index: third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
|
| index 2f49b7a398cb715f29ffb633392f60edd2df540c..d203d1fea27873af91f92575fd87c8d6b60e2fca 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
|
| @@ -49,12 +49,12 @@ class PLATFORM_EXPORT GraphicsContextState final {
|
|
|
| public:
|
| static std::unique_ptr<GraphicsContextState> create() {
|
| - return wrapUnique(new GraphicsContextState());
|
| + return WTF::wrapUnique(new GraphicsContextState());
|
| }
|
|
|
| static std::unique_ptr<GraphicsContextState> createAndCopy(
|
| const GraphicsContextState& other) {
|
| - return wrapUnique(new GraphicsContextState(other));
|
| + return WTF::wrapUnique(new GraphicsContextState(other));
|
| }
|
|
|
| void copy(const GraphicsContextState&);
|
|
|