| Index: third_party/WebKit/Source/web/WebPerformance.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPerformance.cpp b/third_party/WebKit/Source/web/WebPerformance.cpp
|
| index baeb02c2f1b8d43c9dadf499609be88184a5c3bb..eca3b0bfd2c738d07946e3d523e0219345fa4f35 100644
|
| --- a/third_party/WebKit/Source/web/WebPerformance.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPerformance.cpp
|
| @@ -52,13 +52,13 @@ void WebPerformance::assign(const WebPerformance& other)
|
| WebNavigationType WebPerformance::navigationType() const
|
| {
|
| switch (m_private->navigation()->type()) {
|
| - case PerformanceNavigation::TYPE_NAVIGATE:
|
| + case PerformanceNavigation::kTypeNavigate:
|
| return WebNavigationTypeOther;
|
| - case PerformanceNavigation::TYPE_RELOAD:
|
| + case PerformanceNavigation::kTypeReload:
|
| return WebNavigationTypeReload;
|
| - case PerformanceNavigation::TYPE_BACK_FORWARD:
|
| + case PerformanceNavigation::kTypeBackForward:
|
| return WebNavigationTypeBackForward;
|
| - case PerformanceNavigation::TYPE_RESERVED:
|
| + case PerformanceNavigation::kTypeReserved:
|
| return WebNavigationTypeOther;
|
| }
|
| NOTREACHED();
|
|
|