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

Unified Diff: Source/modules/accessibility/AXMockObject.cpp

Issue 742353004: Implement computedRole and computedName (behind a flag) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Finished pulling out ScopedAXObjectCache etc. Many fprintfs remain. Created 6 years 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: Source/modules/accessibility/AXMockObject.cpp
diff --git a/Source/modules/accessibility/AXMockObject.cpp b/Source/modules/accessibility/AXMockObject.cpp
index e93894a3cebf6a328820eb38e1922f865a9cdfa7..3741ea885ce500048832c57b0e1b4137b9253dc0 100644
--- a/Source/modules/accessibility/AXMockObject.cpp
+++ b/Source/modules/accessibility/AXMockObject.cpp
@@ -26,9 +26,12 @@
#include "config.h"
#include "modules/accessibility/AXMockObject.h"
+#include "core/dom/AXObjectCache.h"
+
namespace blink {
-AXMockObject::AXMockObject()
+AXMockObject::AXMockObject(AXObjectCache* axObjectCache)
+ : AXObject(axObjectCache)
{
}

Powered by Google App Engine
This is Rietveld 408576698