Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/download/download_prefs.h" | 8 #include "chrome/browser/download/download_prefs.h" |
| 9 #include "chrome/browser/prefs/pref_service_syncable.h" | 9 #include "chrome/browser/prefs/pref_service_syncable.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 " window.domAutomationController.send(true);" | 80 " window.domAutomationController.send(true);" |
| 81 " }" | 81 " }" |
| 82 "}" | 82 "}" |
| 83 "window.domAutomationController.send(false);"; | 83 "window.domAutomationController.send(false);"; |
| 84 EXPECT_TRUE(content::ExecuteScriptAndExtractBool( | 84 EXPECT_TRUE(content::ExecuteScriptAndExtractBool( |
| 85 browser()->tab_strip_model()->GetActiveWebContents(), | 85 browser()->tab_strip_model()->GetActiveWebContents(), |
| 86 script, | 86 script, |
| 87 &result)); | 87 &result)); |
| 88 EXPECT_TRUE(result); | 88 EXPECT_TRUE(result); |
| 89 | 89 |
| 90 base::DictionaryValue value; | 90 browser()->profile()->GetPrefs()->SetInteger(prefs::kDefaultImagesSetting, 2); |
|
markusheintz_
2015/07/27 08:51:32
Can you use the enum value that corresponds to the
msramek
2015/07/27 09:13:27
Done.
| |
| 91 value.SetInteger("images", 2); | |
| 92 browser()->profile()->GetPrefs()->Set(prefs::kDefaultContentSettings, | |
| 93 value); | |
| 94 | 91 |
| 95 ui_test_utils::NavigateToURL( | 92 ui_test_utils::NavigateToURL( |
| 96 browser(), | 93 browser(), |
| 97 test_server()->GetURL("files/settings/image_page.html")); | 94 test_server()->GetURL("files/settings/image_page.html")); |
| 98 | 95 |
| 99 result = false; | 96 result = false; |
| 100 EXPECT_TRUE(content::ExecuteScriptAndExtractBool( | 97 EXPECT_TRUE(content::ExecuteScriptAndExtractBool( |
| 101 browser()->tab_strip_model()->GetActiveWebContents(), | 98 browser()->tab_strip_model()->GetActiveWebContents(), |
| 102 script, | 99 script, |
| 103 &result)); | 100 &result)); |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 221 EXPECT_FALSE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled)); | 218 EXPECT_FALSE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled)); |
| 222 EXPECT_FALSE(prefs->GetBoolean(prefs::kAlternateErrorPagesEnabled)); | 219 EXPECT_FALSE(prefs->GetBoolean(prefs::kAlternateErrorPagesEnabled)); |
| 223 EXPECT_FALSE(prefs->GetBoolean(prefs::kSearchSuggestEnabled)); | 220 EXPECT_FALSE(prefs->GetBoolean(prefs::kSearchSuggestEnabled)); |
| 224 } | 221 } |
| 225 | 222 |
| 226 // Verify that we have some Local State prefs. | 223 // Verify that we have some Local State prefs. |
| 227 IN_PROC_BROWSER_TEST_F(PrefsFunctionalTest, TestHaveLocalStatePrefs) { | 224 IN_PROC_BROWSER_TEST_F(PrefsFunctionalTest, TestHaveLocalStatePrefs) { |
| 228 EXPECT_TRUE(g_browser_process->local_state()->GetPreferenceValues().get()); | 225 EXPECT_TRUE(g_browser_process->local_state()->GetPreferenceValues().get()); |
| 229 } | 226 } |
| 230 | 227 |
| OLD | NEW |