| Index: third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
|
| diff --git a/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp b/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
|
| index 1fd51f9beeb897d9736d597c350dbc1133175d97..49745032ac04d158933a556a1e9cbb4fc38b5fa8 100644
|
| --- a/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
|
| +++ b/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
|
| @@ -43,10 +43,10 @@ PerformanceNavigation::PerformanceNavigation(LocalFrame* frame)
|
|
|
| unsigned short PerformanceNavigation::type() const
|
| {
|
| - if (!m_frame)
|
| + if (!frame())
|
| return kTypeNavigate;
|
|
|
| - DocumentLoader* documentLoader = m_frame->loader().documentLoader();
|
| + DocumentLoader* documentLoader = frame()->loader().documentLoader();
|
| if (!documentLoader)
|
| return kTypeNavigate;
|
|
|
| @@ -62,10 +62,10 @@ unsigned short PerformanceNavigation::type() const
|
|
|
| unsigned short PerformanceNavigation::redirectCount() const
|
| {
|
| - if (!m_frame)
|
| + if (!frame())
|
| return 0;
|
|
|
| - DocumentLoader* loader = m_frame->loader().documentLoader();
|
| + DocumentLoader* loader = frame()->loader().documentLoader();
|
| if (!loader)
|
| return 0;
|
|
|
|
|