// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORT_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORT_H_ #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/core/frame/report_body.h" #include "third_party/blink/renderer/platform/wtf/text/wtf_string.h" namespace blink { // The constants are implemented as static members of a class to have an unique // address and not violate ODR. struct CORE_EXPORT ReportType { … }; class CORE_EXPORT Report : public ScriptWrappable { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORT_H_