Changeset 231885 in webkit


Ignore:
Timestamp:
May 16, 2018 8:58:09 PM (6 years ago)
Author:
bshafiei@apple.com
Message:

Cherry-pick r231784. rdar://problem/39999778

Unreviewed, fix the iOS build after r231779

Also address a minor in-person review comment by returning "extrazoom" instead of the empty string.

  • page/DisabledAdaptations.cpp: (WebCore::extraZoomModeAdaptationName):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231784 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-606.1.17-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-606.1.17-branch/Source/WebCore/ChangeLog

    r231884 r231885  
     12018-05-16  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Cherry-pick r231784. rdar://problem/39999778
     4
     5    Unreviewed, fix the iOS build after r231779
     6   
     7    Also address a minor in-person review comment by returning "extrazoom" instead of the empty string.
     8   
     9    * page/DisabledAdaptations.cpp:
     10    (WebCore::extraZoomModeAdaptationName):
     11   
     12    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231784 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     13
     14    2018-05-14  Wenson Hsieh  <wenson_hsieh@apple.com>
     15
     16            Unreviewed, fix the iOS build after r231779
     17
     18            Also address a minor in-person review comment by returning "extrazoom" instead of the empty string.
     19
     20            * page/DisabledAdaptations.cpp:
     21            (WebCore::extraZoomModeAdaptationName):
     22
    1232018-05-16  Babak Shafiei  <bshafiei@apple.com>
    224
  • branches/safari-606.1.17-branch/Source/WebCore/page/DisabledAdaptations.cpp

    r231884 r231885  
    3131namespace WebCore {
    3232
    33 #if USE(APPLE_INTERNAL_SDK)
     33#if USE(APPLE_INTERNAL_SDK) && __has_include(<WebKitAdditions/DisabledAdaptationsAdditions.cpp>)
    3434
    3535#import <WebKitAdditions/DisabledAdaptationsAdditions.cpp>
     
    3939String extraZoomModeAdaptationName()
    4040{
    41     return emptyString();
     41    return ASCIILiteral("extrazoom");
    4242}
    4343
Note: See TracChangeset for help on using the changeset viewer.