Changeset 79080 in webkit


Ignore:
Timestamp:
Feb 18, 2011 7:43:50 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Fix coding style errors in RenderThemeEfl.h
https://bugs.webkit.org/show_bug.cgi?id=54693

Fix style errors in RenderThemeEfl.h

  • platform/efl/RenderThemeEfl.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r79077 r79080  
     12011-02-18  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [EFL] Fix coding style errors in RenderThemeEfl.h
     6        https://bugs.webkit.org/show_bug.cgi?id=54693
     7
     8        Fix style errors in RenderThemeEfl.h
     9
     10        * platform/efl/RenderThemeEfl.h:
     11
    1122011-02-18  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
    213
  • trunk/Source/WebCore/platform/efl/RenderThemeEfl.h

    r78041 r79080  
    102102    void setSearchTextColor(int foreR, int foreG, int foreB, int foreA, int backR, int backG, int backB, int backA);
    103103
    104     void adjustSizeConstraints(RenderStyle* style, FormType type) const;
     104    void adjustSizeConstraints(RenderStyle*, FormType) const;
    105105
    106106
     
    147147    virtual bool paintSliderThumb(RenderObject*, const PaintInfo&, const IntRect&);
    148148
    149     static void setDefaultFontSize(int size);
     149    static void setDefaultFontSize(int fontsize);
    150150
    151151#if ENABLE(PROGRESS_TAG)
     
    179179    void applyEdjeColors();
    180180    void applyPartDescriptions();
    181     const char* edjeGroupFromFormType(FormType type) const;
    182     void applyEdjeStateFromForm(Evas_Object* o, ControlStates states);
    183     bool paintThemePart(RenderObject* o, FormType type, const PaintInfo& i, const IntRect& rect);
     181    const char* edjeGroupFromFormType(FormType) const;
     182    void applyEdjeStateFromForm(Evas_Object*, ControlStates);
     183    bool paintThemePart(RenderObject*, FormType, const PaintInfo&, const IntRect&);
    184184
    185185    Page* m_page;
     
    206206        LengthBox padding;
    207207    };
    208     void applyPartDescriptionFallback(struct ThemePartDesc* desc);
    209     void applyPartDescription(Evas_Object* o, struct ThemePartDesc* desc);
     208    void applyPartDescriptionFallback(struct ThemePartDesc*);
     209    void applyPartDescription(Evas_Object*, struct ThemePartDesc*);
    210210
    211211    struct ThemePartCacheEntry {
     
    224224
    225225    // get (use, create or replace) entry from cache
    226     struct ThemePartCacheEntry* cacheThemePartGet(FormType type, const IntSize& size);
     226    struct ThemePartCacheEntry* cacheThemePartGet(FormType, const IntSize&);
    227227    // flush cache, deleting all entries
    228228    void cacheThemePartFlush();
    229229
    230230    // internal, used by cacheThemePartGet()
    231     bool themePartCacheEntryReset(struct ThemePartCacheEntry* ce, FormType type);
    232     bool themePartCacheEntrySurfaceCreate(struct ThemePartCacheEntry* ce);
    233     struct ThemePartCacheEntry* cacheThemePartNew(FormType type, const IntSize& size);
    234     struct ThemePartCacheEntry* cacheThemePartReset(FormType type, struct ThemePartCacheEntry* ce);
    235     struct ThemePartCacheEntry* cacheThemePartResizeAndReset(FormType type, const IntSize& size, struct ThemePartCacheEntry* ce);
     231    bool themePartCacheEntryReset(struct ThemePartCacheEntry*, FormType);
     232    bool themePartCacheEntrySurfaceCreate(struct ThemePartCacheEntry*);
     233    struct ThemePartCacheEntry* cacheThemePartNew(FormType, const IntSize&);
     234    struct ThemePartCacheEntry* cacheThemePartReset(FormType, struct ThemePartCacheEntry*);
     235    struct ThemePartCacheEntry* cacheThemePartResizeAndReset(FormType, const IntSize&, struct ThemePartCacheEntry*);
    236236
    237237};
Note: See TracChangeset for help on using the changeset viewer.