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

Unified Diff: third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.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
« no previous file with comments | « third_party/WebKit/public/platform/WebURLResponse.h ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.h
diff --git a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.h b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.h
index 74a1b96365049f01d0c3fe97e01ea5aefbcb6071..ec8847f74d043e00e36b9d6499b1a602982c19bf 100644
--- a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.h
+++ b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandshakeResponseInfo.h
@@ -33,7 +33,7 @@
#include "public/platform/WebCommon.h"
#include "public/platform/WebNonCopyable.h"
-#include "public/platform/WebPrivateOwnPtr.h"
+#include <memory>
namespace blink {
@@ -55,7 +55,7 @@ public:
#endif // INSIDE_BLINK
private:
- WebPrivateOwnPtr<WebSocketHandshakeResponse> m_private;
+ std::unique_ptr<WebSocketHandshakeResponse> m_private;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/platform/WebURLResponse.h ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698