| Index: Source/core/timing/PerformanceNavigation.cpp
|
| diff --git a/Source/core/timing/PerformanceNavigation.cpp b/Source/core/timing/PerformanceNavigation.cpp
|
| index 2a19b71d2c556a1699322c3507ed638e203062ad..7e94d7596e487a3d4f3c643bbafbc23cd810fc30 100644
|
| --- a/Source/core/timing/PerformanceNavigation.cpp
|
| +++ b/Source/core/timing/PerformanceNavigation.cpp
|
| @@ -48,7 +48,7 @@ unsigned short PerformanceNavigation::type() const
|
| if (!m_frame)
|
| return TYPE_NAVIGATE;
|
|
|
| - DocumentLoader* documentLoader = m_frame->loader()->documentLoader();
|
| + DocumentLoader* documentLoader = m_frame->loader().documentLoader();
|
| if (!documentLoader)
|
| return TYPE_NAVIGATE;
|
|
|
| @@ -68,7 +68,7 @@ unsigned short PerformanceNavigation::redirectCount() const
|
| if (!m_frame)
|
| return 0;
|
|
|
| - DocumentLoader* loader = m_frame->loader()->documentLoader();
|
| + DocumentLoader* loader = m_frame->loader().documentLoader();
|
| if (!loader)
|
| return 0;
|
|
|
|
|