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

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

Issue 1768753003: Implemented the reporting of text style and language information on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to using HashTable from base and GetInheritedStringAttribute instead of specialized methods… Created 4 years, 9 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/AXObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
index df967a70cb4aa292729ef5caf3d18fa0ab345429..04fe66c68045d8c0f411c4b729f592326df141f9 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
@@ -698,6 +698,7 @@ public:
// Used by objects of role ColorWellRole.
virtual RGBA32 colorValue() const { return Color::transparent; }
virtual bool canvasHasFallbackContent() const { return false; }
+ virtual String fontFamily() const { return nullAtom; }
// Font size is in pixels.
virtual float fontSize() const { return 0.0f; }
virtual int headingLevel() const { return 0; }

Powered by Google App Engine
This is Rietveld 408576698