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

Unified Diff: base/test/mock_entropy_provider.h

Issue 1544113002: Switch to standard integer types in base/test/. (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 | « base/test/mock_devices_changed_observer.h ('k') | base/test/mock_entropy_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/mock_entropy_provider.h
diff --git a/base/test/mock_entropy_provider.h b/base/test/mock_entropy_provider.h
index c55bea62d4d6208a8865b031cfba3f9e595fba0e..32e9332e109ebf788c80a3685303e3633487a366 100644
--- a/base/test/mock_entropy_provider.h
+++ b/base/test/mock_entropy_provider.h
@@ -5,6 +5,8 @@
#ifndef BASE_TEST_MOCK_ENTROPY_PROVIDER_H_
#define BASE_TEST_MOCK_ENTROPY_PROVIDER_H_
+#include <stdint.h>
+
#include "base/metrics/field_trial.h"
namespace base {
@@ -15,7 +17,7 @@ class MockEntropyProvider : public base::FieldTrial::EntropyProvider {
// base::FieldTrial::EntropyProvider:
double GetEntropyForTrial(const std::string& trial_name,
- uint32 randomization_seed) const override;
+ uint32_t randomization_seed) const override;
};
} // namespace base
« no previous file with comments | « base/test/mock_devices_changed_observer.h ('k') | base/test/mock_entropy_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698