blob: 6cc1eff338553090639b708f720d1db0eca18b12 [file] [log] [blame]
// Copyright 2016 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 THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_DEPRECATION_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_DEPRECATION_H_
#include "base/macros.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/css/css_property_names.h"
#include "third_party/blink/renderer/core/frame/use_counter.h"
#include "third_party/blink/renderer/platform/wtf/bit_vector.h"
namespace blink {
namespace mojom {
enum class FeaturePolicyFeature;
} // namespace mojom
class DocumentLoader;
class LocalFrame;
class CORE_EXPORT Deprecation {
DISALLOW_NEW();
public:
Deprecation();
~Deprecation();
static void WarnOnDeprecatedProperties(const LocalFrame*,
CSSPropertyID unresolved_property);
void ClearSuppression();
void MuteForInspector();
void UnmuteForInspector();
// "countDeprecation" sets the bit for this feature to 1, and sends a
// deprecation warning to the console. Repeated calls are ignored.
//
// Be considerate to developers' consoles: features should only send
// deprecation warnings when we're actively interested in removing them from
// the platform.
static void CountDeprecation(const LocalFrame*, WebFeature);
static void CountDeprecation(ExecutionContext*, WebFeature);
static void CountDeprecation(const Document&, WebFeature);
static void CountDeprecation(DocumentLoader*, WebFeature);
// Count only features if they're being used in an iframe which does not
// have script access into the top level document.
static void CountDeprecationCrossOriginIframe(const LocalFrame*, WebFeature);
static void CountDeprecationCrossOriginIframe(const Document&, WebFeature);
static void CountDeprecationFeaturePolicy(const Document&,
mojom::FeaturePolicyFeature);
static String DeprecationMessage(WebFeature);
// Note: this is only public for tests.
bool IsSuppressed(CSSPropertyID unresolved_property);
protected:
void Suppress(CSSPropertyID unresolved_property);
void SetReported(WebFeature feature);
bool GetReported(WebFeature feature) const;
// CSSPropertyIDs that aren't deprecated return an empty string.
static String DeprecationMessage(CSSPropertyID unresolved_property);
// Generates a deprecation report, to be routed to the Reporting API and any
// ReportingObservers. Also sends the deprecation message to the console.
static void GenerateReport(const LocalFrame*, WebFeature);
// To minimize the report/console spam from frames coming and going, report
// each deprecation at most once per page load per renderer process.
BitVector features_deprecation_bits_;
BitVector css_property_deprecation_bits_;
unsigned mute_count_;
DISALLOW_COPY_AND_ASSIGN(Deprecation);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_DEPRECATION_H_