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

Unified Diff: third_party/WebKit/public/web/WebAXObject.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/web/WebAXObject.h
diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
index 9bd99ee2707fa910ef1f47b8846555c4d42eba6b..57259bb51e2f95ad3cb7d37094c8a8b6ae2fa01c 100644
--- a/third_party/WebKit/public/web/WebAXObject.h
+++ b/third_party/WebKit/public/web/WebAXObject.h
@@ -33,10 +33,10 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPoint.h"
-#include "../platform/WebPrivateOwnPtr.h"
#include "../platform/WebPrivatePtr.h"
#include "../platform/WebVector.h"
#include "WebAXEnums.h"
+#include <memory>
#if BLINK_IMPLEMENTATION
namespace WTF { template <typename T> class PassRefPtr; }
@@ -68,7 +68,7 @@ public:
BLINK_EXPORT WebAXObject root() const;
private:
- WebPrivateOwnPtr<ScopedAXObjectCache> m_private;
+ std::unique_ptr<ScopedAXObjectCache> m_private;
};
// A container for passing around a reference to AXObject.

Powered by Google App Engine
This is Rietveld 408576698