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

Unified Diff: third_party/WebKit/public/platform/WebFont.h

Issue 2143323002: Remove WebPrivateOwnPtr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 5 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/public/platform/WebFont.h
diff --git a/third_party/WebKit/public/platform/WebFont.h b/third_party/WebKit/public/platform/WebFont.h
index 60842384b29f27e1202b4cb395f89699ef52dab2..97b436b56728151c2f090f55cb69d911fdb0edf8 100644
--- a/third_party/WebKit/public/platform/WebFont.h
+++ b/third_party/WebKit/public/platform/WebFont.h
@@ -8,7 +8,7 @@
#include "WebCanvas.h"
#include "WebColor.h"
#include "WebCommon.h"
-#include "WebPrivateOwnPtr.h"
+#include <memory>
namespace blink {
@@ -45,7 +45,7 @@ private:
explicit WebFont(const WebFontDescription&);
class Impl;
- WebPrivateOwnPtr<Impl> m_private;
+ std::unique_ptr<Impl> m_private;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/platform/WebBlobData.h ('k') | third_party/WebKit/public/platform/WebLayerTreeView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698