| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index e913d31e1340f849c08cc1f8b86a41dd5aee504c..31b953bd6ebcca6f14646986c5272fbba4bbf5f9 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -28,6 +28,9 @@
|
|
|
| #include "core/layout/LayoutObject.h"
|
|
|
| +#include <algorithm>
|
| +#include <memory>
|
| +
|
| #include "core/animation/ElementAnimations.h"
|
| #include "core/css/resolver/StyleResolver.h"
|
| #include "core/dom/AXObjectCache.h"
|
| @@ -85,8 +88,6 @@
|
| #include "wtf/allocator/Partitions.h"
|
| #include "wtf/text/StringBuilder.h"
|
| #include "wtf/text/WTFString.h"
|
| -#include <algorithm>
|
| -#include <memory>
|
| #ifndef NDEBUG
|
| #include <stdio.h>
|
| #endif
|
| @@ -99,11 +100,6 @@ static bool gModifyLayoutTreeStructureAnyState = false;
|
|
|
| } // namespace
|
|
|
| -const LayoutUnit& caretWidth() {
|
| - static LayoutUnit gCaretWidth(1);
|
| - return gCaretWidth;
|
| -}
|
| -
|
| #if DCHECK_IS_ON()
|
|
|
| LayoutObject::SetLayoutNeededForbiddenScope::SetLayoutNeededForbiddenScope(
|
|
|