| Index: Source/core/layout/LayoutObject.cpp
 | 
| diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
 | 
| index f6770bd817a79cd8f1e0247ef21b6722fce5f35b..9e196557d2f6b1fad474a65411c2fa614347b0ad 100644
 | 
| --- a/Source/core/layout/LayoutObject.cpp
 | 
| +++ b/Source/core/layout/LayoutObject.cpp
 | 
| @@ -78,13 +78,13 @@
 | 
|  #include "core/paint/DeprecatedPaintLayer.h"
 | 
|  #include "core/paint/ObjectPainter.h"
 | 
|  #include "platform/JSONValues.h"
 | 
| -#include "platform/Partitions.h"
 | 
|  #include "platform/RuntimeEnabledFeatures.h"
 | 
|  #include "platform/TraceEvent.h"
 | 
|  #include "platform/TracedValue.h"
 | 
|  #include "platform/geometry/TransformState.h"
 | 
|  #include "platform/graphics/GraphicsContext.h"
 | 
|  #include "platform/graphics/paint/DisplayItemList.h"
 | 
| +#include "wtf/Partitions.h"
 | 
|  #include "wtf/RefCountedLeakCounter.h"
 | 
|  #include "wtf/text/StringBuilder.h"
 | 
|  #include "wtf/text/WTFString.h"
 | 
| @@ -142,7 +142,7 @@ static SelectionPaintInvalidationMap* selectionPaintInvalidationMap = 0;
 | 
|  void* LayoutObject::operator new(size_t sz)
 | 
|  {
 | 
|      ASSERT(isMainThread());
 | 
| -    return partitionAlloc(Partitions::getRenderingPartition(), sz);
 | 
| +    return partitionAlloc(WTF::Partitions::getRenderingPartition(), sz);
 | 
|  }
 | 
|  
 | 
|  void LayoutObject::operator delete(void* ptr)
 | 
| 
 |