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

Unified Diff: chrome/installer/util/experiment_storage_unittest.cc

Issue 2933043002: Installer support for Windows 10 inactive user toast. (Closed)
Patch Set: sync to position 479504 and patch set 17 of crrev.com/2889323004 Created 3 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
Index: chrome/installer/util/experiment_storage_unittest.cc
diff --git a/chrome/installer/util/experiment_storage_unittest.cc b/chrome/installer/util/experiment_storage_unittest.cc
index 5f4d2d3a57235a9dbaef81b73d16814e0485d615..d8888b82f00a27f5551c124e7f69dddad35f0603 100644
--- a/chrome/installer/util/experiment_storage_unittest.cc
+++ b/chrome/installer/util/experiment_storage_unittest.cc
@@ -124,10 +124,9 @@ TEST_P(ExperimentStorageTest, TestEncodeDecodeForMin) {
TEST_P(ExperimentStorageTest, TestReadWriteParticipation) {
ExperimentStorage storage;
- ExperimentStorage::Participation expected =
- ExperimentStorage::Participation::kIsParticipating;
+ ExperimentStorage::Study expected = ExperimentStorage::kStudyOne;
ASSERT_TRUE(storage.AcquireLock()->WriteParticipation(expected));
- ExperimentStorage::Participation p;
+ ExperimentStorage::Study p;
ASSERT_TRUE(storage.AcquireLock()->ReadParticipation(&p));
EXPECT_EQ(expected, p);
}

Powered by Google App Engine
This is Rietveld 408576698