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

Side by Side Diff: components/variations/variations_seed_simulator.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/variations/variations_seed_simulator.h" 5 #include "components/variations/variations_seed_simulator.h"
6 6
7 #include <stddef.h>
8
7 #include <map> 9 #include <map>
8 10
9 #include "base/metrics/field_trial.h" 11 #include "base/metrics/field_trial.h"
10 #include "components/variations/processed_study.h" 12 #include "components/variations/processed_study.h"
11 #include "components/variations/proto/study.pb.h" 13 #include "components/variations/proto/study.pb.h"
12 #include "components/variations/study_filtering.h" 14 #include "components/variations/study_filtering.h"
13 #include "components/variations/variations_associated_data.h" 15 #include "components/variations/variations_associated_data.h"
14 16
15 namespace variations { 17 namespace variations {
16 18
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 return ConvertExperimentTypeToChangeType(experiment->type()); 249 return ConvertExperimentTypeToChangeType(experiment->type());
248 } 250 }
249 251
250 // Current group exists in the study - check whether its params changed. 252 // Current group exists in the study - check whether its params changed.
251 if (!VariationParamsAreEqual(study, *experiment)) 253 if (!VariationParamsAreEqual(study, *experiment))
252 return ConvertExperimentTypeToChangeType(experiment->type()); 254 return ConvertExperimentTypeToChangeType(experiment->type());
253 return NO_CHANGE; 255 return NO_CHANGE;
254 } 256 }
255 257
256 } // namespace variations 258 } // namespace variations
OLDNEW
« no previous file with comments | « components/variations/variations_seed_simulator.h ('k') | components/variations/variations_seed_simulator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698