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

Changeset 211327 in webkit


Ignore:
Timestamp:
Jan 27, 2017, 11:03:05 PM (10 years ago)
Author:
bshafiei@apple.com
Message:

Merged r211324. rdar://problem/30247500

Location:
tags/Safari-604.1.5.0.1/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/Safari-604.1.5.0.1/Source/WebCore/ChangeLog

    r211256 r211327  
     12017-01-27  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Merge r211324.
     4
     5    2017-01-27  Andy Estes  <aestes@apple.com>
     6
     7            Fix the iOS build when USE(QUICK_LOOK) is disabled.
     8
     9            * testing/Internals.cpp:
     10            (WebCore::Internals::setQuickLookPassword):
     11            * testing/Internals.h:
     12
    1132017-01-26  Chris Dumez  <cdumez@apple.com>
    214
  • tags/Safari-604.1.5.0.1/Source/WebCore/testing/Internals.cpp

    r211253 r211327  
    36433643}
    36443644
     3645#if PLATFORM(IOS)
     3646void Internals::setQuickLookPassword(const String& password)
     3647{
    36453648#if USE(QUICK_LOOK)
    3646 void Internals::setQuickLookPassword(const String& password)
    3647 {
    36483649    auto& quickLookHandleClient = MockQuickLookHandleClient::singleton();
    36493650    QuickLookHandle::setClientForTesting(&quickLookHandleClient);
    36503651    quickLookHandleClient.setPassword(password);
     3652#else
     3653    UNUSED_PARAM(password);
     3654#endif
    36513655}
    36523656#endif
  • tags/Safari-604.1.5.0.1/Source/WebCore/testing/Internals.h

    r211253 r211327  
    521521    Vector<String> accessKeyModifiers() const;
    522522
    523 #if USE(QUICK_LOOK)
     523#if PLATFORM(IOS)
    524524    void setQuickLookPassword(const String&);
    525525#endif
Note: See TracChangeset for help on using the changeset viewer.