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

Side by Side Diff: base/metrics/field_trial_param_associator.cc

Issue 2568533002: Fix tsan deadlock in base_unittest (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "base/metrics/field_trial_param_associator.h" 5 #include "base/metrics/field_trial_param_associator.h"
6 6
7 #include "base/metrics/field_trial.h" 7 #include "base/metrics/field_trial.h"
8 8
9 namespace base { 9 namespace base {
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 const FieldTrialKey key(trial_name, group_name); 60 const FieldTrialKey key(trial_name, group_name);
61 if (!ContainsKey(field_trial_params_, key)) 61 if (!ContainsKey(field_trial_params_, key))
62 return false; 62 return false;
63 63
64 *params = field_trial_params_[key]; 64 *params = field_trial_params_[key];
65 return true; 65 return true;
66 } 66 }
67 67
68 void FieldTrialParamAssociator::ClearAllParamsForTesting() { 68 void FieldTrialParamAssociator::ClearAllParamsForTesting() {
69 AutoLock scoped_lock(lock_); 69 {
70 field_trial_params_.clear(); 70 AutoLock scoped_lock(lock_);
71 field_trial_params_.clear();
72 }
71 FieldTrialList::ClearParamsFromSharedMemoryForTesting(); 73 FieldTrialList::ClearParamsFromSharedMemoryForTesting();
72 } 74 }
73 75
74 void FieldTrialParamAssociator::ClearAllCachedParamsForTesting() { 76 void FieldTrialParamAssociator::ClearAllCachedParamsForTesting() {
75 AutoLock scoped_lock(lock_); 77 AutoLock scoped_lock(lock_);
76 field_trial_params_.clear(); 78 field_trial_params_.clear();
77 } 79 }
78 80
79 } // namespace base 81 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698