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

Unified Diff: components/variations/variations_seed_simulator_unittest.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 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/variations/variations_seed_simulator.cc ('k') | components/variations/variations_seed_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/variations_seed_simulator_unittest.cc
diff --git a/components/variations/variations_seed_simulator_unittest.cc b/components/variations/variations_seed_simulator_unittest.cc
index 965c6afba3362f5474b27572f30762b30bd024b1..1b656b6e11e0ebcf1458b2d41238e9444208b577 100644
--- a/components/variations/variations_seed_simulator_unittest.cc
+++ b/components/variations/variations_seed_simulator_unittest.cc
@@ -4,8 +4,11 @@
#include "components/variations/variations_seed_simulator.h"
+#include <stdint.h>
+
#include <map>
+#include "base/macros.h"
#include "base/strings/stringprintf.h"
#include "components/variations/processed_study.h"
#include "components/variations/proto/study.pb.h"
@@ -26,7 +29,7 @@ class TestEntropyProvider : public base::FieldTrial::EntropyProvider {
// base::FieldTrial::EntropyProvider implementation:
double GetEntropyForTrial(const std::string& trial_name,
- uint32 randomization_seed) const override {
+ uint32_t randomization_seed) const override {
return entropy_value_;
}
« no previous file with comments | « components/variations/variations_seed_simulator.cc ('k') | components/variations/variations_seed_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698