Changeset 84144 in webkit


Ignore:
Timestamp:
Apr 18, 2011 7:55:12 AM (13 years ago)
Author:
jeffm@apple.com
Message:

2011-04-18 Jeff Miller <jeffm@apple.com>

Reviewed by Timothy Hatcher.

WKFrameLoadState should be a uint32_t to match our API conventions
https://bugs.webkit.org/show_bug.cgi?id=58785

  • UIProcess/API/C/WKFrame.h: typedef WKFrameLoadState as a uint32_t and define its values as an anonymous enum.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r84138 r84144  
     12011-04-18  Jeff Miller  <jeffm@apple.com>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        WKFrameLoadState should be a uint32_t to match our API conventions
     6        https://bugs.webkit.org/show_bug.cgi?id=58785
     7
     8        * UIProcess/API/C/WKFrame.h: typedef WKFrameLoadState as a uint32_t and define its values as an anonymous enum.
     9
    1102011-04-18  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebKit2/UIProcess/API/C/WKFrame.h

    r76403 r84144  
    3737#endif
    3838
    39 enum WKFrameLoadState {
     39enum {
    4040    kWKFrameLoadStateProvisional = 0,
    4141    kWKFrameLoadStateCommitted = 1,
    4242    kWKFrameLoadStateFinished = 2
    4343};
    44 typedef enum WKFrameLoadState WKFrameLoadState;
     44typedef uint32_t WKFrameLoadState;
    4545
    4646WK_EXPORT WKTypeID WKFrameGetTypeID();
Note: See TracChangeset for help on using the changeset viewer.