Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Unified Diff: third_party/WebKit/Source/core/loader/ProgressTracker.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/ProgressTracker.h
diff --git a/third_party/WebKit/Source/core/loader/ProgressTracker.h b/third_party/WebKit/Source/core/loader/ProgressTracker.h
index 705badc829748ea4b5db3131404dbb9db06a9642..a5198095c2ab6a1ba68530dda0ce0df6ab62fd37 100644
--- a/third_party/WebKit/Source/core/loader/ProgressTracker.h
+++ b/third_party/WebKit/Source/core/loader/ProgressTracker.h
@@ -32,7 +32,7 @@
#include "wtf/Forward.h"
#include "wtf/HashMap.h"
#include "wtf/Noncopyable.h"
-#include "wtf/OwnPtr.h"
+#include <memory>
namespace blink {
@@ -84,7 +84,7 @@ private:
bool m_finalProgressChangedSent;
double m_progressValue;
- HashMap<unsigned long, OwnPtr<ProgressItem>> m_progressItems;
+ HashMap<unsigned long, std::unique_ptr<ProgressItem>> m_progressItems;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/loader/PrerenderHandle.h ('k') | third_party/WebKit/Source/core/loader/ProgressTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698