#include "third_party/blink/renderer/core/css/cssom/computed_style_property_map.h"
#include "third_party/blink/renderer/core/css/computed_style_css_value_mapping.h"
#include "third_party/blink/renderer/core/css/css_function_value.h"
#include "third_party/blink/renderer/core/css/css_identifier_value.h"
#include "third_party/blink/renderer/core/css/css_numeric_literal_value.h"
#include "third_party/blink/renderer/core/css/css_unparsed_declaration_value.h"
#include "third_party/blink/renderer/core/css/css_variable_data.h"
#include "third_party/blink/renderer/core/css/properties/computed_style_utils.h"
#include "third_party/blink/renderer/core/css/properties/css_property_ref.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/pseudo_element.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
namespace blink {
unsigned int ComputedStylePropertyMap::size() const { … }
bool ComputedStylePropertyMap::ComparePropertyNames(
const CSSPropertyName& name_a,
const CSSPropertyName& name_b) { … }
Element* ComputedStylePropertyMap::StyledElement() const { … }
const ComputedStyle* ComputedStylePropertyMap::UpdateStyle() const { … }
const CSSValue* ComputedStylePropertyMap::GetProperty(
CSSPropertyID property_id) const { … }
const CSSValue* ComputedStylePropertyMap::GetCustomProperty(
const AtomicString& property_name) const { … }
void ComputedStylePropertyMap::ForEachProperty(IterationFunction visitor) { … }
String ComputedStylePropertyMap::SerializationForShorthand(
const CSSProperty& property) const { … }
}