Changeset 202440 in webkit


Ignore:
Timestamp:
Jun 24, 2016 1:14:31 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Remove unused and static return value from InspectorStyle::populateAllProperties
https://bugs.webkit.org/show_bug.cgi?id=159069

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-06-24
Reviewed by Andreas Kling.

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyle::populateAllProperties):

  • inspector/InspectorStyleSheet.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r202439 r202440  
     12016-06-24  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove unused and static return value from InspectorStyle::populateAllProperties
     4        https://bugs.webkit.org/show_bug.cgi?id=159069
     5
     6        Reviewed by Andreas Kling.
     7
     8        * inspector/InspectorStyleSheet.cpp:
     9        (WebCore::InspectorStyle::populateAllProperties):
     10        * inspector/InspectorStyleSheet.h:
     11
    1122016-06-21  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebCore/inspector/InspectorStyleSheet.cpp

    r202242 r202440  
    358358}
    359359
    360 bool InspectorStyle::populateAllProperties(Vector<InspectorStyleProperty>* result) const
     360void InspectorStyle::populateAllProperties(Vector<InspectorStyleProperty>* result) const
    361361{
    362362    HashSet<String> sourcePropertyNames;
     
    381381            result->append(InspectorStyleProperty(CSSPropertySourceData(name, m_style->getPropertyValue(name), !m_style->getPropertyPriority(name).isEmpty(), true, SourceRange()), false, false));
    382382    }
    383 
    384     return true;
    385383}
    386384
  • trunk/Source/WebCore/inspector/InspectorStyleSheet.h

    r197563 r202440  
    141141    InspectorStyle(const InspectorCSSId& styleId, RefPtr<CSSStyleDeclaration>&&, InspectorStyleSheet* parentStyleSheet);
    142142
    143     bool populateAllProperties(Vector<InspectorStyleProperty>* result) const;
     143    void populateAllProperties(Vector<InspectorStyleProperty>* result) const;
    144144    Ref<Inspector::Protocol::CSS::CSSStyle> styleWithProperties() const;
    145145    RefPtr<CSSRuleSourceData> extractSourceData() const;
Note: See TracChangeset for help on using the changeset viewer.