| Index: components/rappor/reports.h
|
| diff --git a/components/rappor/reports.h b/components/rappor/reports.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..aedb3dd61753bc7357b64d10d6e629edd70b46eb
|
| --- /dev/null
|
| +++ b/components/rappor/reports.h
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef COMPONENTS_RAPPOR_REPORTS_H_
|
| +#define COMPONENTS_RAPPOR_REPORTS_H_
|
| +
|
| +#include "components/rappor/reports.h"
|
| +
|
| +#include "components/rappor/byte_vector_utils.h"
|
| +
|
| +namespace rappor {
|
| +
|
| +struct RapporParameters;
|
| +
|
| +namespace internal {
|
| +
|
| +ByteVector GenerateReport(const std::string& secret,
|
| + const RapporParameters& parameters,
|
| + const ByteVector& value);
|
| +
|
| +} // namespace internal
|
| +
|
| +} // namespace rappor
|
| +
|
| +#endif // COMPONENTS_RAPPOR_REPORTS_H_
|
|
|