Include inttypes.h unconditionally in format_macros.h - VS2103 now supplies this...
[chromium-blink-merge.git] / base / test / mock_entropy_provider.cc
blob75186a56a1adb5102f5828f7e1c725a4940400e8
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/test/mock_entropy_provider.h"
7 namespace base {
9 MockEntropyProvider::~MockEntropyProvider() {}
11 double MockEntropyProvider::GetEntropyForTrial(
12 const std::string& trial_name, uint32 randomization_seed) const {
13 return 0.5;
16 } // namespace base