| Index: chrome/browser/profile_resetter/automatic_profile_resetter.cc
 | 
| diff --git a/chrome/browser/profile_resetter/automatic_profile_resetter.cc b/chrome/browser/profile_resetter/automatic_profile_resetter.cc
 | 
| index f932946afebb851d49239a4394e0ed39a308eac9..e6c886d1e4c76f2e4098a95a0b106b182c2baa35 100644
 | 
| --- a/chrome/browser/profile_resetter/automatic_profile_resetter.cc
 | 
| +++ b/chrome/browser/profile_resetter/automatic_profile_resetter.cc
 | 
| @@ -85,16 +85,17 @@ const uint32 kCombinedStatusMaskMaximumValue =
 | 
|  
 | 
|  // Returns whether or not a dry-run shall be performed.
 | 
|  bool ShouldPerformDryRun() {
 | 
| -  return base::StartsWithASCII(
 | 
| +  return base::StartsWith(
 | 
|        base::FieldTrialList::FindFullName(kAutomaticProfileResetStudyName),
 | 
| -      kAutomaticProfileResetStudyDryRunGroupName, true);
 | 
| +      kAutomaticProfileResetStudyDryRunGroupName, base::CompareCase::SENSITIVE);
 | 
|  }
 | 
|  
 | 
|  // Returns whether or not a live-run shall be performed.
 | 
|  bool ShouldPerformLiveRun() {
 | 
| -  return base::StartsWithASCII(
 | 
| +  return base::StartsWith(
 | 
|        base::FieldTrialList::FindFullName(kAutomaticProfileResetStudyName),
 | 
| -      kAutomaticProfileResetStudyEnabledGroupName, true);
 | 
| +      kAutomaticProfileResetStudyEnabledGroupName,
 | 
| +      base::CompareCase::SENSITIVE);
 | 
|  }
 | 
|  
 | 
|  // If the currently active experiment group prescribes a |program| and
 | 
| 
 |