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

Unified Diff: third_party/WebKit/public/web/WebFrame.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/web/WebAXObject.h ('k') | third_party/WebKit/public/web/WebScopedUserGesture.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebFrame.h
diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
index 39f6dc66301de05a3cdb952f7cde7b27c54b8322..5a295c7467f7682a58b14b3ef002e2d2d8ba01d0 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -40,12 +40,12 @@
#include "public/platform/WebCanvas.h"
#include "public/platform/WebInsecureRequestPolicy.h"
#include "public/platform/WebMessagePortChannel.h"
-#include "public/platform/WebPrivateOwnPtr.h"
#include "public/platform/WebReferrerPolicy.h"
#include "public/platform/WebURL.h"
#include "public/platform/WebURLRequest.h"
#include "public/web/WebFrameLoadType.h"
#include "public/web/WebTreeScopeType.h"
+#include <memory>
struct NPObject;
@@ -516,7 +516,7 @@ private:
WebFrame* m_lastChild;
WebFrame* m_opener;
- WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker;
+ std::unique_ptr<OpenedFrameTracker> m_openedFrameTracker;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | third_party/WebKit/public/web/WebScopedUserGesture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698