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

Unified Diff: Source/core/frame/Settings.h

Issue 606703003: Delete AXObjectCache when disabling accessibility setting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « no previous file | Source/core/frame/Settings.cpp » ('j') | Source/core/frame/Settings.in » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Settings.h
diff --git a/Source/core/frame/Settings.h b/Source/core/frame/Settings.h
index e4bf9d4cb3b41a84b8d5e8149a8d6425f907469f..538bc0457a2b1942b089ba0cc6828ab8c2e2ddb0 100644
--- a/Source/core/frame/Settings.h
+++ b/Source/core/frame/Settings.h
@@ -67,6 +67,9 @@ public:
void setOpenGLMultisamplingEnabled(bool flag);
bool openGLMultisamplingEnabled() { return m_openGLMultisamplingEnabled; }
+ void setAccessibilityEnabled(bool);
+ bool accessibilityEnabled() const { return m_accessibilityEnabled; }
+
void setDelegate(SettingsDelegate*);
private:
@@ -80,6 +83,7 @@ private:
bool m_openGLMultisamplingEnabled : 1;
IntSize m_textAutosizingWindowSizeOverride;
bool m_textAutosizingEnabled : 1;
+ bool m_accessibilityEnabled : 1;
SETTINGS_MEMBER_VARIABLES
};
« no previous file with comments | « no previous file | Source/core/frame/Settings.cpp » ('j') | Source/core/frame/Settings.in » ('J')

Powered by Google App Engine
This is Rietveld 408576698