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

Side by Side Diff: chrome/browser/ui/webui/options/language_options_interactive_uitest.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 "base/macros.h" 5 #include "base/macros.h"
6 #include "base/prefs/pref_service.h"
7 #include "build/build_config.h" 6 #include "build/build_config.h"
8 #include "chrome/browser/chrome_notification_types.h" 7 #include "chrome/browser/chrome_notification_types.h"
9 #include "chrome/browser/ui/browser_window.h" 8 #include "chrome/browser/ui/browser_window.h"
10 #include "chrome/browser/ui/chrome_pages.h" 9 #include "chrome/browser/ui/chrome_pages.h"
11 #include "chrome/browser/ui/tabs/tab_strip_model.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
12 #include "chrome/common/pref_names.h" 11 #include "chrome/common/pref_names.h"
13 #include "chrome/common/url_constants.h" 12 #include "chrome/common/url_constants.h"
14 #include "chrome/test/base/in_process_browser_test.h" 13 #include "chrome/test/base/in_process_browser_test.h"
15 #include "chrome/test/base/interactive_test_utils.h" 14 #include "chrome/test/base/interactive_test_utils.h"
16 #include "chrome/test/base/ui_test_utils.h" 15 #include "chrome/test/base/ui_test_utils.h"
16 #include "components/prefs/pref_service.h"
17 #include "content/public/browser/render_frame_host.h" 17 #include "content/public/browser/render_frame_host.h"
18 #include "content/public/browser/web_contents.h" 18 #include "content/public/browser/web_contents.h"
19 #include "content/public/test/browser_test_utils.h" 19 #include "content/public/test/browser_test_utils.h"
20 #include "ui/base/l10n/l10n_util.h" 20 #include "ui/base/l10n/l10n_util.h"
21 21
22 namespace language_options_ui_test { 22 namespace language_options_ui_test {
23 23
24 namespace { 24 namespace {
25 25
26 // This class will test the language options settings. 26 // This class will test the language options settings.
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 // Make sure that the element is now the button that is next in the tab order. 149 // Make sure that the element is now the button that is next in the tab order.
150 // Checking that the list is no longer selected is not sufficient to validate 150 // Checking that the list is no longer selected is not sufficient to validate
151 // this use case because this test should fail if an item inside the list is 151 // this use case because this test should fail if an item inside the list is
152 // selected. 152 // selected.
153 std::string new_id = GetActiveElementId(); 153 std::string new_id = GetActiveElementId();
154 EXPECT_EQ("language-options-add-button", new_id); 154 EXPECT_EQ("language-options-add-button", new_id);
155 } 155 }
156 156
157 } // namespace language_options_ui_test 157 } // namespace language_options_ui_test
158 158
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698