OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 public: | 82 public: |
83 FirstRunMasterPrefsBrowserTestBase() {} | 83 FirstRunMasterPrefsBrowserTestBase() {} |
84 | 84 |
85 protected: | 85 protected: |
86 virtual void SetUp() OVERRIDE { | 86 virtual void SetUp() OVERRIDE { |
87 // All users of this test class need to call SetMasterPreferencesForTest() | 87 // All users of this test class need to call SetMasterPreferencesForTest() |
88 // before this class' SetUp() is invoked. | 88 // before this class' SetUp() is invoked. |
89 ASSERT_TRUE(text_.get()); | 89 ASSERT_TRUE(text_.get()); |
90 | 90 |
91 ASSERT_TRUE(base::CreateTemporaryFile(&prefs_file_)); | 91 ASSERT_TRUE(base::CreateTemporaryFile(&prefs_file_)); |
92 EXPECT_TRUE(file_util::WriteFile(prefs_file_, text_->c_str(), | 92 EXPECT_TRUE(base::WriteFile(prefs_file_, text_->c_str(), |
93 text_->size())); | 93 text_->size())); |
viettrungluu
2014/02/28 21:47:24
"
| |
94 first_run::SetMasterPrefsPathForTesting(prefs_file_); | 94 first_run::SetMasterPrefsPathForTesting(prefs_file_); |
95 | 95 |
96 // This invokes BrowserMain, and does the import, so must be done last. | 96 // This invokes BrowserMain, and does the import, so must be done last. |
97 InProcessBrowserTest::SetUp(); | 97 InProcessBrowserTest::SetUp(); |
98 } | 98 } |
99 | 99 |
100 virtual void TearDown() OVERRIDE { | 100 virtual void TearDown() OVERRIDE { |
101 EXPECT_TRUE(base::DeleteFile(prefs_file_, false)); | 101 EXPECT_TRUE(base::DeleteFile(prefs_file_, false)); |
102 InProcessBrowserTest::TearDown(); | 102 InProcessBrowserTest::TearDown(); |
103 } | 103 } |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
285 INSTANTIATE_TEST_CASE_P( | 285 INSTANTIATE_TEST_CASE_P( |
286 FirstRunMasterPrefsWithTrackedPreferencesInstance, | 286 FirstRunMasterPrefsWithTrackedPreferencesInstance, |
287 FirstRunMasterPrefsWithTrackedPreferences, | 287 FirstRunMasterPrefsWithTrackedPreferences, |
288 testing::Values( | 288 testing::Values( |
289 chrome_prefs::internals::kSettingsEnforcementGroupNoEnforcement, | 289 chrome_prefs::internals::kSettingsEnforcementGroupNoEnforcement, |
290 chrome_prefs::internals::kSettingsEnforcementGroupEnforceOnload, | 290 chrome_prefs::internals::kSettingsEnforcementGroupEnforceOnload, |
291 chrome_prefs::internals::kSettingsEnforcementGroupEnforceAlways)); | 291 chrome_prefs::internals::kSettingsEnforcementGroupEnforceAlways)); |
292 | 292 |
293 | 293 |
294 #endif // !defined(OS_CHROMEOS) | 294 #endif // !defined(OS_CHROMEOS) |
OLD | NEW |