| Index: third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| index b62d5391553bd8bbad4b835d8e28fe7bf7d89b18..beeb0b2d231a142be405d11046daacc048414ab0 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
|
| @@ -20,8 +20,8 @@
|
| #include "wtf/Alignment.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/PassOwnPtr.h"
|
| -#include "wtf/Utility.h"
|
| #include "wtf/Vector.h"
|
| +#include <utility>
|
|
|
| namespace blink {
|
|
|
| @@ -76,7 +76,7 @@ public:
|
|
|
| if (displayItemConstructionIsDisabled())
|
| return;
|
| - DisplayItemClass& displayItem = m_newDisplayItemList.allocateAndConstruct<DisplayItemClass>(WTF::forward<Args>(args)...);
|
| + DisplayItemClass& displayItem = m_newDisplayItemList.allocateAndConstruct<DisplayItemClass>(std::forward<Args>(args)...);
|
| processNewItem(displayItem);
|
| }
|
|
|
| @@ -93,7 +93,7 @@ public:
|
| if (lastDisplayItemIsNoopBegin())
|
| removeLastDisplayItem();
|
| else
|
| - createAndAppend<DisplayItemClass>(WTF::forward<Args>(args)...);
|
| + createAndAppend<DisplayItemClass>(std::forward<Args>(args)...);
|
| }
|
|
|
| // Scopes must be used to avoid duplicated display item ids when we paint some object
|
|
|