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

Unified Diff: public/web/WebAXObject.h

Issue 1088473002: Refactor ScopedAXObjectCache to remove ref count (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed m_ownedCache init Created 5 years, 7 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 | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAXObject.h
diff --git a/public/web/WebAXObject.h b/public/web/WebAXObject.h
index e9a7813b3538b7b5d70d89cc28b03d33805e1312..697ec64dd1ffb60e60d4d4bce49243b1d15099be 100644
--- a/public/web/WebAXObject.h
+++ b/public/web/WebAXObject.h
@@ -33,6 +33,7 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPoint.h"
+#include "../platform/WebPrivateOwnPtr.h"
#include "../platform/WebPrivatePtr.h"
#include "../platform/WebVector.h"
#include "WebAXEnums.h"
@@ -59,12 +60,11 @@ struct WebRect;
class WebScopedAXContext {
public:
BLINK_EXPORT WebScopedAXContext(WebDocument& rootDocument);
- BLINK_EXPORT ~WebScopedAXContext();
BLINK_EXPORT WebAXObject root() const;
private:
- WebPrivatePtr<ScopedAXObjectCache> m_private;
+ WebPrivateOwnPtr<ScopedAXObjectCache> m_private;
};
// A container for passing around a reference to AXObject.
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698