#ifndef COMPONENTS_FEEDBACK_FEEDBACK_COMMON_H_
#define COMPONENTS_FEEDBACK_FEEDBACK_COMMON_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/memory/ref_counted.h"
#include "base/synchronization/lock.h"
#include "components/feedback/redaction_tool/redaction_tool.h"
namespace base {
class FilePath;
}
namespace userfeedback {
class ExtensionSubmit;
}
class FeedbackCommon : public base::RefCountedThreadSafe<FeedbackCommon> { … };
#endif