| Index: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
 | 
| diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
 | 
| index 0f4245016b6bc32281aedb3b4ce321fd5de15e59..260c3652b10d864a660d92cf4c1eb4471494c778 100644
 | 
| --- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
 | 
| +++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
 | 
| @@ -139,7 +139,7 @@ WebURLLoadTiming WebURLResponse::loadTiming() {
 | 
|  void WebURLResponse::setLoadTiming(const WebURLLoadTiming& timing) {
 | 
|    RefPtr<ResourceLoadTiming> loadTiming =
 | 
|        PassRefPtr<ResourceLoadTiming>(timing);
 | 
| -  m_resourceResponse->setResourceLoadTiming(loadTiming.release());
 | 
| +  m_resourceResponse->setResourceLoadTiming(std::move(loadTiming));
 | 
|  }
 | 
|  
 | 
|  WebHTTPLoadInfo WebURLResponse::httpLoadInfo() {
 | 
| 
 |