| Index: third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| index 66c8517af76c01b766ba78e6c636b151a8b8a9f2..da475fa4ff31846e45c1d289f7458c3089e82b03 100644
|
| --- a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| @@ -36,6 +36,7 @@
|
| #include "platform/Logging.h"
|
| #include "platform/network/ResourceResponse.h"
|
| #include "wtf/CurrentTime.h"
|
| +#include "wtf/PtrUtil.h"
|
| #include "wtf/text/CString.h"
|
|
|
| using namespace std;
|
| @@ -168,7 +169,7 @@ void ProgressTracker::incrementProgress(unsigned long identifier, const Resource
|
| item->bytesReceived = 0;
|
| item->estimatedLength = estimatedLength;
|
| } else {
|
| - m_progressItems.set(identifier, adoptPtr(new ProgressItem(estimatedLength)));
|
| + m_progressItems.set(identifier, wrapUnique(new ProgressItem(estimatedLength)));
|
| }
|
| }
|
|
|
|
|