blob: 6bbc19bb0f280efabc327fd0ca51106f553df61d [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_CSS_CSSOM_STYLE_PROPERTY_MAP_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSSOM_STYLE_PROPERTY_MAP_H_
#include "base/macros.h"
#include "third_party/blink/renderer/bindings/core/v8/css_style_value_or_string.h"
#include "third_party/blink/renderer/core/css/cssom/style_property_map_read_only_main_thread.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
namespace blink {
class ExceptionState;
class ExecutionContext;
class CORE_EXPORT StylePropertyMap : public StylePropertyMapReadOnlyMainThread {
DEFINE_WRAPPERTYPEINFO();
public:
void set(const ExecutionContext*,
const String& property_name,
const HeapVector<CSSStyleValueOrString>& values,
ExceptionState&);
void append(const ExecutionContext*,
const String& property_name,
const HeapVector<CSSStyleValueOrString>& values,
ExceptionState&);
void remove(const String& property_name, ExceptionState&);
void clear();
protected:
virtual void SetProperty(CSSPropertyID, const CSSValue&) = 0;
virtual bool SetShorthandProperty(CSSPropertyID,
const String&,
SecureContextMode) = 0;
virtual void SetCustomProperty(const AtomicString&, const CSSValue&) = 0;
virtual void RemoveProperty(CSSPropertyID) = 0;
virtual void RemoveCustomProperty(const AtomicString&) = 0;
virtual void RemoveAllProperties() = 0;
StylePropertyMap() = default;
private:
DISALLOW_COPY_AND_ASSIGN(StylePropertyMap);
};
} // namespace blink
#endif