Changeset 73727 in webkit


Ignore:
Timestamp:
Dec 10, 2010 7:34:40 AM (13 years ago)
Author:
Martin Robinson
Message:

2010-12-10 Martin Robinson <mrobinson@igalia.com>

Reviewed by Gustavo Noronha Silva.

Remove unnecessary variable names from DumpRenderTreeSupportGtk
https://bugs.webkit.org/show_bug.cgi?id=50815

There were some unnecessary variable names in DumpRenderTreeSupportGtk,
so remove them.

  • WebCoreSupport/DumpRenderTreeSupportGtk.h: Do it.
Location:
trunk/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r73714 r73727  
     12010-12-10  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        Remove unnecessary variable names from DumpRenderTreeSupportGtk
     6        https://bugs.webkit.org/show_bug.cgi?id=50815
     7
     8        There were some unnecessary variable names in DumpRenderTreeSupportGtk,
     9        so remove them.
     10
     11        * WebCoreSupport/DumpRenderTreeSupportGtk.h: Do it.
     12
    1132010-12-10  Joone Hur  <joone@kldp.org>
    214
  • trunk/WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.h

    r73714 r73727  
    4545
    4646    // FIXME: Move these to webkitwebframe.h once their API has been discussed.
    47     static GSList* getFrameChildren(WebKitWebFrame* frame);
    48     static WTF::CString getInnerText(WebKitWebFrame* frame);
    49     static WTF::CString dumpRenderTree(WebKitWebFrame* frame);
    50     static WTF::CString counterValueForElementById(WebKitWebFrame* frame, const char* id);
    51     static int pageNumberForElementById(WebKitWebFrame* frame, const char* id, float pageWidth, float pageHeight);
    52     static int numberOfPagesForFrame(WebKitWebFrame* frame, float pageWidth, float pageHeight);
    53     static WTF::CString pageProperty(WebKitWebFrame* frame, const char* propertyName, int pageNumber);
    54     static bool isPageBoxVisible(WebKitWebFrame* frame, int pageNumber);
    55     static WTF::CString pageSizeAndMarginsInPixels(WebKitWebFrame* mainFrame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
    56     static void addUserStyleSheet(WebKitWebFrame* mainFrame, const char* sourceCode);
    57     static guint getPendingUnloadEventCount(WebKitWebFrame* frame);
    58     static bool pauseAnimation(WebKitWebFrame* frame, const char* name, double time, const char* element);
    59     static bool pauseTransition(WebKitWebFrame* frame, const char* name, double time, const char* element);
    60     static bool pauseSVGAnimation(WebKitWebFrame* frame, const char* animationId, double time, const char* elementId);
    61     static WTF::CString markerTextForListItem(WebKitWebFrame* frame, JSContextRef context, JSValueRef nodeObject);
    62     static unsigned int numberOfActiveAnimations(WebKitWebFrame* frame);
    63     static void suspendAnimations(WebKitWebFrame* frame);
    64     static void resumeAnimations(WebKitWebFrame* frame);
    65     static void clearMainFrameName(WebKitWebFrame* frame);
    66     static AtkObject* getFocusedAccessibleElement(WebKitWebFrame* frame);
     47    static GSList* getFrameChildren(WebKitWebFrame*);
     48    static WTF::CString getInnerText(WebKitWebFrame*);
     49    static WTF::CString dumpRenderTree(WebKitWebFrame*);
     50    static WTF::CString counterValueForElementById(WebKitWebFrame*, const char* id);
     51    static int pageNumberForElementById(WebKitWebFrame*, const char* id, float pageWidth, float pageHeight);
     52    static int numberOfPagesForFrame(WebKitWebFrame*, float pageWidth, float pageHeight);
     53    static WTF::CString pageProperty(WebKitWebFrame*, const char* propertyName, int pageNumber);
     54    static bool isPageBoxVisible(WebKitWebFrame*, int pageNumber);
     55    static WTF::CString pageSizeAndMarginsInPixels(WebKitWebFrame*, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
     56    static void addUserStyleSheet(WebKitWebFrame*, const char* sourceCode);
     57    static guint getPendingUnloadEventCount(WebKitWebFrame*);
     58    static bool pauseAnimation(WebKitWebFrame*, const char* name, double time, const char* element);
     59    static bool pauseTransition(WebKitWebFrame*, const char* name, double time, const char* element);
     60    static bool pauseSVGAnimation(WebKitWebFrame*, const char* animationId, double time, const char* elementId);
     61    static WTF::CString markerTextForListItem(WebKitWebFrame*, JSContextRef, JSValueRef nodeObject);
     62    static unsigned int numberOfActiveAnimations(WebKitWebFrame*);
     63    static void suspendAnimations(WebKitWebFrame*);
     64    static void resumeAnimations(WebKitWebFrame*);
     65    static void clearMainFrameName(WebKitWebFrame*);
     66    static AtkObject* getFocusedAccessibleElement(WebKitWebFrame*);
    6767    static void layoutFrame(WebKitWebFrame*);
    6868
    6969    // WebKitWebView
    70     static void executeCoreCommandByName(WebKitWebView* webView, const gchar* name, const gchar* value);
    71     static bool isCommandEnabled(WebKitWebView* webView, const gchar* name);
     70    static void executeCoreCommandByName(WebKitWebView*, const gchar* name, const gchar* value);
     71    static bool isCommandEnabled(WebKitWebView*, const gchar* name);
    7272
    7373    // GC
Note: See TracChangeset for help on using the changeset viewer.