| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index 10216fbf3601b979bb82b715e709edd94a4f828d..30a43d16f6e1924b58c2f42f5daa536191cdf1c2 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -23,6 +23,8 @@
|
|
|
| #include "core/style/ComputedStyle.h"
|
|
|
| +#include <algorithm>
|
| +#include <memory>
|
| #include "core/animation/css/CSSAnimationData.h"
|
| #include "core/animation/css/CSSTransitionData.h"
|
| #include "core/css/CSSPaintValue.h"
|
| @@ -52,12 +54,10 @@
|
| #include "platform/transforms/RotateTransformOperation.h"
|
| #include "platform/transforms/ScaleTransformOperation.h"
|
| #include "platform/transforms/TranslateTransformOperation.h"
|
| -#include "wtf/MathExtras.h"
|
| -#include "wtf/PtrUtil.h"
|
| -#include "wtf/SaturatedArithmetic.h"
|
| -#include "wtf/SizeAssertions.h"
|
| -#include <algorithm>
|
| -#include <memory>
|
| +#include "platform/wtf/MathExtras.h"
|
| +#include "platform/wtf/PtrUtil.h"
|
| +#include "platform/wtf/SaturatedArithmetic.h"
|
| +#include "platform/wtf/SizeAssertions.h"
|
|
|
| namespace blink {
|
|
|
|
|