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

Unified Diff: chrome/browser/first_run/first_run_unittest.cc

Issue 329393004: No longer relaunch into metro mode by default on touch devices. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: delete more code! Created 6 years, 6 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 | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/process_singleton_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/first_run/first_run_unittest.cc
diff --git a/chrome/browser/first_run/first_run_unittest.cc b/chrome/browser/first_run/first_run_unittest.cc
index c5e0c70a149b418e02466ef5befd55015da9bf30..e7a8259048eb865cc27fd395d756d8edb0558810 100644
--- a/chrome/browser/first_run/first_run_unittest.cc
+++ b/chrome/browser/first_run/first_run_unittest.cc
@@ -27,17 +27,6 @@ class FirstRunTest : public testing::Test {
DISALLOW_COPY_AND_ASSIGN(FirstRunTest);
};
-TEST_F(FirstRunTest, RemoveSentinel) {
- base::FilePath sentinel_path;
- EXPECT_TRUE(internal::GetFirstRunSentinelFilePath(&sentinel_path));
-
- EXPECT_TRUE(internal::CreateSentinel());
- EXPECT_TRUE(base::PathExists(sentinel_path));
-
- EXPECT_TRUE(RemoveSentinel());
- EXPECT_FALSE(base::PathExists(sentinel_path));
-}
-
TEST_F(FirstRunTest, SetupMasterPrefsFromInstallPrefs_VariationsSeed) {
installer::MasterPreferences install_prefs("{ \"variations_seed\":\"xyz\" }");
EXPECT_EQ(1U, install_prefs.master_dictionary().size());
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/process_singleton_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698