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

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

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Fixed rebase 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
Index: third_party/WebKit/Source/modules/accessibility/AXMockObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXMockObject.h b/third_party/WebKit/Source/modules/accessibility/AXMockObject.h
index e83ff1a619f2fb89cef69b71b48bb76e99669584..29afc406deabe8d57cba2ee07e1f24d46260bfb9 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXMockObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXMockObject.h
@@ -27,13 +27,13 @@
#define AXMockObject_h
#include "modules/ModulesExport.h"
-#include "modules/accessibility/AXObject.h"
+#include "modules/accessibility/AXObjectImpl.h"
namespace blink {
class AXObjectCacheImpl;
-class MODULES_EXPORT AXMockObject : public AXObject {
+class MODULES_EXPORT AXMockObject : public AXObjectImpl {
WTF_MAKE_NONCOPYABLE(AXMockObject);
protected:
@@ -42,8 +42,8 @@ class MODULES_EXPORT AXMockObject : public AXObject {
public:
~AXMockObject() override;
- // AXObject overrides.
- AXObject* ComputeParent() const override { return parent_; }
+ // AXObjectImpl overrides.
+ AXObjectImpl* ComputeParent() const override { return parent_; }
bool IsEnabled() const override { return true; }
private:

Powered by Google App Engine
This is Rietveld 408576698