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

Unified Diff: chrome/browser/apps/guest_view/web_view_browsertest.cc

Issue 2617633004: Fix AccessibilityExtensionLoader's handling of locked screen (Closed)
Patch Set: Test removals. Created 3 years, 11 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 | chrome/browser/chromeos/accessibility/accessibility_extension_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/guest_view/web_view_browsertest.cc
diff --git a/chrome/browser/apps/guest_view/web_view_browsertest.cc b/chrome/browser/apps/guest_view/web_view_browsertest.cc
index fbc1b1dbad58560a2a12a9ec40ad6b7321d2ae1c..2698c537659b3b751072125fd806c09a035325b5 100644
--- a/chrome/browser/apps/guest_view/web_view_browsertest.cc
+++ b/chrome/browser/apps/guest_view/web_view_browsertest.cc
@@ -95,12 +95,6 @@
#include "content/public/test/ppapi_test_utils.h"
#endif
-#if defined(OS_CHROMEOS)
-#include "ash/common/accessibility_types.h"
-#include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
-#include "chrome/browser/chromeos/accessibility/speech_monitor.h"
-#endif
-
using extensions::ContextMenuMatcher;
using extensions::ExtensionsAPIClient;
using extensions::MenuItem;
@@ -2222,30 +2216,6 @@ IN_PROC_BROWSER_TEST_P(WebViewTest, ScreenCoordinates) {
<< message_;
}
-#if defined(OS_CHROMEOS)
-// Flaky, see http://crbug.com/611736.
-IN_PROC_BROWSER_TEST_P(WebViewTest, DISABLED_ChromeVoxInjection) {
- EXPECT_FALSE(
- chromeos::AccessibilityManager::Get()->IsSpokenFeedbackEnabled());
-
- chromeos::SpeechMonitor monitor;
- chromeos::AccessibilityManager::Get()->EnableSpokenFeedback(
- true, ash::A11Y_NOTIFICATION_NONE);
- EXPECT_TRUE(monitor.SkipChromeVoxEnabledMessage());
-
- ASSERT_TRUE(StartEmbeddedTestServer());
- content::WebContents* guest_web_contents = LoadGuest(
- "/extensions/platform_apps/web_view/chromevox_injection/guest.html",
- "web_view/chromevox_injection");
- ASSERT_TRUE(guest_web_contents);
-
- for (;;) {
- if (monitor.GetNextUtterance() == "chrome vox test title")
- break;
- }
-}
-#endif
-
// Flaky on Windows. http://crbug.com/303966
#if defined(OS_WIN)
#define MAYBE_TearDownTest DISABLED_TearDownTest
« no previous file with comments | « no previous file | chrome/browser/chromeos/accessibility/accessibility_extension_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698