summaryrefslogtreecommitdiffstats
path: root/components/variations/active_field_trials.h
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-25 14:30:46 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-25 22:31:31 +0000
commit5dd91f87503390b4fbddc53cb13dc9e8e5d3e3ec (patch)
tree027c60f01fdcb12671bc2ee3e7d6b4ad8025e5d7 /components/variations/active_field_trials.h
parenta2238c73732f3e3f3b20a4f231d92c130cff52ba (diff)
downloadchromium_src-5dd91f87503390b4fbddc53cb13dc9e8e5d3e3ec.zip
chromium_src-5dd91f87503390b4fbddc53cb13dc9e8e5d3e3ec.tar.gz
chromium_src-5dd91f87503390b4fbddc53cb13dc9e8e5d3e3ec.tar.bz2
Switch to standard integer types in components/, part 4 of 4.
BUG=138542 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/1549993003 Cr-Commit-Position: refs/heads/master@{#366870}
Diffstat (limited to 'components/variations/active_field_trials.h')
-rw-r--r--components/variations/active_field_trials.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/components/variations/active_field_trials.h b/components/variations/active_field_trials.h
index 882ab8c..b742551 100644
--- a/components/variations/active_field_trials.h
+++ b/components/variations/active_field_trials.h
@@ -5,9 +5,10 @@
#ifndef COMPONENTS_VARIATIONS_ACTIVE_FIELD_TRIALS_H_
#define COMPONENTS_VARIATIONS_ACTIVE_FIELD_TRIALS_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/metrics/field_trial.h"
namespace variations {
@@ -15,8 +16,8 @@ namespace variations {
// The Unique ID of a trial and its active group, where the name and group
// identifiers are hashes of the trial and group name strings.
struct ActiveGroupId {
- uint32 name;
- uint32 group;
+ uint32_t name;
+ uint32_t group;
};
// Returns an ActiveGroupId struct for the given trial and group names.