Changeset 191511 in webkit
- Timestamp:
- Oct 23, 2015, 2:25:54 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r191510 r191511 1 2015-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 1 9 2015-10-23 Tim Horton <timothy_horton@apple.com> 2 10 -
trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.h
r191510 r191511 289 289 290 290 // 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 }; 292 292 293 293 // The state of complex text input for the plug-in. 294 PluginComplexTextInputState m_pluginComplexTextInputState ;294 PluginComplexTextInputState m_pluginComplexTextInputState { PluginComplexTextInputDisabled }; 295 295 296 296 #if ENABLE(FULLSCREEN_API) … … 331 331 332 332 #if WK_API_ENABLED 333 _WKThumbnailView *m_thumbnailView ;333 _WKThumbnailView *m_thumbnailView { nullptr }; 334 334 #endif 335 335 };
Note:
See TracChangeset
for help on using the changeset viewer.