HomeSort by relevance Sort by last modified time
    Searched refs:StyleVariableData (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleVariableData.h 46 class StyleVariableData : public RefCounted<StyleVariableData> {
48 static PassRefPtr<StyleVariableData> create() { return adoptRef(new StyleVariableData()); }
49 PassRefPtr<StyleVariableData> copy() const { return adoptRef(new StyleVariableData(*this)); }
51 bool operator==(const StyleVariableData& other) const { return other.m_data == m_data; }
52 bool operator!=(const StyleVariableData& other) const { return !(*this == other); }
58 explicit StyleVariableData() : RefCounted<StyleVariableData>() { }
    [all...]
StyleRareInheritedData.h 29 #include "core/rendering/style/StyleVariableData.h"
123 DataRef<StyleVariableData> m_variables;

Completed in 278 milliseconds