Fix infinite recursion on hiding panel when created during fullscreen mode.
[chromium-blink-merge.git] / components / rappor / rappor_parameters.cc
blobede7636661e873e2ada2a3f621e5615b88a7b8c5
1 // Copyright 2014 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 "components/rappor/rappor_parameters.h"
7 #include "base/strings/stringprintf.h"
9 namespace rappor {
11 std::string RapporParameters::ToString() const {
12 return base::StringPrintf("{ %d, %d, %d, %d, %d, %d }",
13 bloom_filter_size_bytes,
14 bloom_filter_hash_function_count,
15 fake_prob,
16 fake_one_prob,
17 one_coin_prob,
18 zero_coin_prob);
21 } // namespace rappor