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

Side by Side Diff: chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <queue> 5 #include <queue>
6 6
7 #include "ash/accelerators/accelerator_controller.h" 7 #include "ash/accelerators/accelerator_controller.h"
8 #include "ash/accelerators/accelerator_table.h" 8 #include "ash/accelerators/accelerator_table.h"
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "ash/system/tray/system_tray.h" 10 #include "ash/system/tray/system_tray.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/macros.h"
12 #include "base/strings/pattern.h" 13 #include "base/strings/pattern.h"
13 #include "base/strings/string_util.h" 14 #include "base/strings/string_util.h"
14 #include "chrome/app/chrome_command_ids.h" 15 #include "chrome/app/chrome_command_ids.h"
15 #include "chrome/browser/chrome_notification_types.h" 16 #include "chrome/browser/chrome_notification_types.h"
16 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" 17 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
17 #include "chrome/browser/chromeos/accessibility/speech_monitor.h" 18 #include "chrome/browser/chromeos/accessibility/speech_monitor.h"
18 #include "chrome/browser/chromeos/login/login_manager_test.h" 19 #include "chrome/browser/chromeos/login/login_manager_test.h"
19 #include "chrome/browser/chromeos/login/ui/login_display_host.h" 20 #include "chrome/browser/chromeos/login/ui/login_display_host.h"
20 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" 21 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h"
21 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" 22 #include "chrome/browser/chromeos/login/ui/webui_login_view.h"
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync( 697 ASSERT_TRUE(ui_test_utils::SendKeyPressToWindowSync(
697 window, ui::VKEY_TAB, false, true /*shift*/, false, false)); 698 window, ui::VKEY_TAB, false, true /*shift*/, false, false));
698 while (speech_monitor_.GetNextUtterance() != "Select your language:") { 699 while (speech_monitor_.GetNextUtterance() != "Select your language:") {
699 } 700 }
700 EXPECT_EQ("English ( United States)", speech_monitor_.GetNextUtterance()); 701 EXPECT_EQ("English ( United States)", speech_monitor_.GetNextUtterance());
701 EXPECT_TRUE(base::MatchPattern(speech_monitor_.GetNextUtterance(), 702 EXPECT_TRUE(base::MatchPattern(speech_monitor_.GetNextUtterance(),
702 "Combo box * of *")); 703 "Combo box * of *"));
703 } 704 }
704 705
705 } // namespace chromeos 706 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698