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

Unified Diff: ash/test/test_shell_delegate.cc

Issue 10543158: Do not toggle Applist with Search key press when accessibility is enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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: ash/test/test_shell_delegate.cc
diff --git a/ash/test/test_shell_delegate.cc b/ash/test/test_shell_delegate.cc
index 57601c1ea45dabc1ba7f70977d9c8432f0a12e45..3b868de582f1b45d774a2ec4cac72cf798485490 100644
--- a/ash/test/test_shell_delegate.cc
+++ b/ash/test/test_shell_delegate.cc
@@ -17,7 +17,9 @@
namespace ash {
namespace test {
-TestShellDelegate::TestShellDelegate() : locked_(false) {
+TestShellDelegate::TestShellDelegate()
+ : locked_(false),
+ spoken_feedback_enabled_(false) {
}
TestShellDelegate::~TestShellDelegate() {
@@ -39,6 +41,10 @@ bool TestShellDelegate::IsScreenLocked() const {
return locked_;
}
+bool TestShellDelegate::IsSpokenFeedbackEnabled() const {
+ return spoken_feedback_enabled_;
+}
+
void TestShellDelegate::Shutdown() {
}

Powered by Google App Engine
This is Rietveld 408576698