Changeset 199850 in webkit


Ignore:
Timestamp:
Apr 21, 2016 5:27:25 PM (8 years ago)
Author:
timothy_horton@apple.com
Message:

Fix the iOS build: WAKView may not respond to drawLayer:inContext:
https://bugs.webkit.org/show_bug.cgi?id=156879
<rdar://problem/25772661>

Reviewed by Beth Dakin.

  • WebView/WebHTMLView.mm:

WebHTMLView on iOS never uses drawLayer:inContext:, and WAKView
doesn't implement it, so this would have thrown an exception
if called, anyway. Fix the build with stricter CA protocols.

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r199846 r199850  
     12016-04-21  Tim Horton  <timothy_horton@apple.com>
     2
     3        Fix the iOS build: WAKView may not respond to drawLayer:inContext:
     4        https://bugs.webkit.org/show_bug.cgi?id=156879
     5        <rdar://problem/25772661>
     6
     7        Reviewed by Beth Dakin.
     8
     9        * WebView/WebHTMLView.mm:
     10        WebHTMLView on iOS never uses drawLayer:inContext:, and WAKView
     11        doesn't implement it, so this would have thrown an exception
     12        if called, anyway. Fix the build with stricter CA protocols.
     13
    1142016-04-21  Jer Noble  <jer.noble@apple.com>
    215
  • trunk/Source/WebKit/mac/WebView/WebHTMLView.mm

    r199692 r199850  
    67036703}
    67046704
     6705#if PLATFORM(MAC)
    67056706- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
    67066707{
     
    67156716        _private->drawingIntoLayer = NO;
    67166717}
     6718#endif
    67176719
    67186720- (BOOL)_web_isDrawingIntoLayer
Note: See TracChangeset for help on using the changeset viewer.