chromium/third_party/blink/renderer/core/css/cssom/inline_style_property_map.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/css/cssom/inline_style_property_map.h"

#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/css/css_unparsed_declaration_value.h"
#include "third_party/blink/renderer/core/css/style_property_serializer.h"

namespace blink {

unsigned int InlineStylePropertyMap::size() const {}

const CSSValue* InlineStylePropertyMap::GetProperty(
    CSSPropertyID property_id) const {}

const CSSValue* InlineStylePropertyMap::GetCustomProperty(
    const AtomicString& property_name) const {}

void InlineStylePropertyMap::SetProperty(CSSPropertyID property_id,
                                         const CSSValue& value) {}

bool InlineStylePropertyMap::SetShorthandProperty(
    CSSPropertyID property_id,
    const String& value,
    SecureContextMode secure_context_mode) {}

void InlineStylePropertyMap::SetCustomProperty(
    const AtomicString& property_name,
    const CSSValue& value) {}

void InlineStylePropertyMap::RemoveProperty(CSSPropertyID property_id) {}

void InlineStylePropertyMap::RemoveCustomProperty(
    const AtomicString& property_name) {}

void InlineStylePropertyMap::RemoveAllProperties() {}

void InlineStylePropertyMap::ForEachProperty(IterationFunction visitor) {}

String InlineStylePropertyMap::SerializationForShorthand(
    const CSSProperty& property) const {}

}  // namespace blink