Changeset 191511 in webkit


Ignore:
Timestamp:
Oct 23, 2015, 2:25:54 PM (10 years ago)
Author:
timothy_horton@apple.com
Message:

WKView being inside WKWebView leads to weird API issues
https://bugs.webkit.org/show_bug.cgi?id=150174

  • UIProcess/Cocoa/WebViewImpl.h:

Whoops.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r191510 r191511  
     12015-10-23  Tim Horton  <timothy_horton@apple.com>
     2
     3        WKView being inside WKWebView leads to weird API issues
     4        https://bugs.webkit.org/show_bug.cgi?id=150174
     5
     6        * UIProcess/Cocoa/WebViewImpl.h:
     7        Whoops.
     8
    192015-10-23  Tim Horton  <timothy_horton@apple.com>
    210
  • trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.h

    r191510 r191511  
    289289
    290290    // The identifier of the plug-in we want to send complex text input to, or 0 if there is none.
    291     uint64_t m_pluginComplexTextInputIdentifier;
     291    uint64_t m_pluginComplexTextInputIdentifier { 0 };
    292292
    293293    // The state of complex text input for the plug-in.
    294     PluginComplexTextInputState m_pluginComplexTextInputState;
     294    PluginComplexTextInputState m_pluginComplexTextInputState { PluginComplexTextInputDisabled };
    295295
    296296#if ENABLE(FULLSCREEN_API)
     
    331331
    332332#if WK_API_ENABLED
    333     _WKThumbnailView *m_thumbnailView;
     333    _WKThumbnailView *m_thumbnailView { nullptr };
    334334#endif
    335335};
Note: See TracChangeset for help on using the changeset viewer.