blob: d74d79a49cb4da4297e94f9458d209a31db079fa [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_STYLE_STYLE_NON_INHERITED_VARIABLES_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_STYLE_NON_INHERITED_VARIABLES_H_
#include <memory>
#include <utility>
#include "base/memory/ptr_util.h"
#include "third_party/blink/renderer/core/css/css_value.h"
#include "third_party/blink/renderer/core/css/css_variable_data.h"
#include "third_party/blink/renderer/core/style/style_variables.h"
#include "third_party/blink/renderer/platform/heap/persistent.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/forward.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string_hash.h"
namespace blink {
class CORE_EXPORT StyleNonInheritedVariables {
USING_FAST_MALLOC(StyleNonInheritedVariables);
public:
std::unique_ptr<StyleNonInheritedVariables> Clone() {
return base::WrapUnique(new StyleNonInheritedVariables(*this));
}
bool operator==(const StyleNonInheritedVariables& other) const {
return variables_ == other.variables_;
}
bool operator!=(const StyleNonInheritedVariables& other) const {
return !(*this == other);
}
void SetData(const AtomicString& name, scoped_refptr<CSSVariableData> value) {
DCHECK(!value || !value->NeedsVariableResolution());
variables_.SetData(name, std::move(value));
}
StyleVariables::OptionalData GetData(const AtomicString& name) const {
return variables_.GetData(name);
}
void SetValue(const AtomicString& name, const CSSValue* value) {
variables_.SetValue(name, value);
}
StyleVariables::OptionalValue GetValue(const AtomicString& name) const {
return variables_.GetValue(name);
}
void CollectNames(HashSet<AtomicString>& names) const {
variables_.CollectNames(names);
}
const StyleVariables::DataMap& Data() const { return variables_.Data(); }
const StyleVariables::ValueMap& Values() const { return variables_.Values(); }
private:
StyleVariables variables_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_STYLE_NON_INHERITED_VARIABLES_H_