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

Unified Diff: Source/modules/accessibility/AXImageMapLink.h

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/AXImageMapLink.h
diff --git a/Source/modules/accessibility/AXImageMapLink.h b/Source/modules/accessibility/AXImageMapLink.h
index a3161a3ec7f8b1b138029e41c92734ad77fce0ed..6d7cb949fdc78bd8dbad958de0b45a9dd9aaedde 100644
--- a/Source/modules/accessibility/AXImageMapLink.h
+++ b/Source/modules/accessibility/AXImageMapLink.h
@@ -38,9 +38,10 @@ namespace blink {
class AXImageMapLink final : public AXMockObject {
private:
- AXImageMapLink();
+ explicit AXImageMapLink(AXObjectCache*);
+
public:
- static PassRefPtr<AXImageMapLink> create();
+ static PassRefPtr<AXImageMapLink> create(AXObjectCache*);
virtual ~AXImageMapLink();
void setHTMLAreaElement(HTMLAreaElement* element) { m_areaElement = element; }

Powered by Google App Engine
This is Rietveld 408576698