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

Unified Diff: components/variations/active_field_trials.h

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 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/user_prefs/user_prefs.h ('k') | components/variations/active_field_trials.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/active_field_trials.h
diff --git a/components/variations/active_field_trials.h b/components/variations/active_field_trials.h
index 882ab8cb9821ad135a9191ed77401eea0b662566..b7425510a10473091d2639884e72f0e97857e7ae 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.
« no previous file with comments | « components/user_prefs/user_prefs.h ('k') | components/variations/active_field_trials.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698