blob: 7dc7979995b5bcdbad25a146ffe0db84351b7313 [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 SRC_DEVELOPER_FEEDBACK_AGENT_CONFIG_H_
#define SRC_DEVELOPER_FEEDBACK_AGENT_CONFIG_H_
#include <zircon/types.h>
#include <set>
#include <string>
namespace fuchsia {
namespace feedback {
// Feedback data provider configuration.
struct Config {
// Set of attachment keys to return data for in
// fuchsia.feedback.DataProvider.GetData().
std::set<std::string> attachment_whitelist;
};
// Parses the JSON config at |filepath| as |config|.
zx_status_t ParseConfig(const std::string& filepath, Config* config);
} // namespace feedback
} // namespace fuchsia
#endif // SRC_DEVELOPER_FEEDBACK_AGENT_CONFIG_H_