⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243968 in webkit


Ignore:
Timestamp:
Apr 7, 2019, 4:31:01 PM (7 years ago)
Author:
ggaren@apple.com
Message:

Remove stray byte added by r241131
https://bugs.webkit.org/show_bug.cgi?id=196682

Reviewed by Alexey Proskuryakov.

Sublime Text thinks WKWebView.mm is binary instead of text.

According to online documentation and bisecting, this is because r241131
introduced a stray byte (probably a null byte?) into the file.

I fixed this with Cmd-C Cmd-V.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _initializeWithConfiguration:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r243963 r243968  
     12019-04-07  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Remove stray byte added by r241131
     4        https://bugs.webkit.org/show_bug.cgi?id=196682
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Sublime Text thinks WKWebView.mm is binary instead of text.
     9
     10        According to online documentation and bisecting, this is because r241131
     11        introduced a stray byte (probably a null byte?) into the file.
     12
     13        I fixed this with Cmd-C Cmd-V.
     14
     15        * UIProcess/API/Cocoa/WKWebView.mm:
     16        (-[WKWebView _initializeWithConfiguration:]):
     17
    1182019-04-06  Wenson Hsieh  <wenson_hsieh@apple.com>
    219
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm

    r243963 r243968  
    594594    pageConfiguration->preferenceValues().set(WebKit::WebPreferencesKey::shouldRespectImageOrientationKey(), WebKit::WebPreferencesStore::Value(!![_configuration _respectsImageOrientation]));
    595595#if !PLATFORM(MAC)
    596     // FIXME: Expose WKPreferences._shouldPrintBackgrounds on iOS, adopt it in all iOS clients, and remove this and WKWebViewConfiguration._printsBackgrounds.
     596    // FIXME: Expose WKPreferences._shouldPrintBackgrounds on iOS, adopt it in all iOS clients, and remove this and WKWebViewConfiguration._printsBackgrounds.
    597597    pageConfiguration->preferenceValues().set(WebKit::WebPreferencesKey::shouldPrintBackgroundsKey(), WebKit::WebPreferencesStore::Value(!![_configuration _printsBackgrounds]));
    598598#endif
Note: See TracChangeset for help on using the changeset viewer.