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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h

Issue 2880993002: Introduce AXObjectCacheBase in core/ and remove WebNode dependency (Closed)
Patch Set: Small fix Created 3 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 | « third_party/WebKit/Source/core/dom/BUILD.gn ('k') | third_party/WebKit/Source/web/WebNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
index 6e130da47b23c26fa72e369674363a9f7a03dc61..d307561963661e2fde8c5cf41d1772e427f37ede 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -30,7 +30,7 @@
#define AXObjectCacheImpl_h
#include <memory>
-#include "core/dom/AXObjectCache.h"
+#include "core/dom/AXObjectCacheBase.h"
#include "modules/ModulesExport.h"
#include "modules/accessibility/AXObjectImpl.h"
#include "platform/wtf/Forward.h"
@@ -44,14 +44,14 @@ class HTMLAreaElement;
class FrameView;
// This class should only be used from inside the accessibility directory.
-class MODULES_EXPORT AXObjectCacheImpl : public AXObjectCache {
+class MODULES_EXPORT AXObjectCacheImpl : public AXObjectCacheBase {
WTF_MAKE_NONCOPYABLE(AXObjectCacheImpl);
public:
static AXObjectCache* Create(Document&);
explicit AXObjectCacheImpl(Document&);
- ~AXObjectCacheImpl();
+ virtual ~AXObjectCacheImpl();
DECLARE_VIRTUAL_TRACE();
AXObjectImpl* FocusedObject();
@@ -128,7 +128,7 @@ class MODULES_EXPORT AXObjectCacheImpl : public AXObjectCache {
AXObjectImpl* GetOrCreate(AbstractInlineTextBox*);
// will only return the AXObjectImpl if it already exists
- AXObjectImpl* Get(Node*);
+ AXObjectImpl* Get(Node*) override;
AXObjectImpl* Get(LayoutObject*);
AXObjectImpl* Get(AbstractInlineTextBox*);
« no previous file with comments | « third_party/WebKit/Source/core/dom/BUILD.gn ('k') | third_party/WebKit/Source/web/WebNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698