Changeset 211327 in webkit
- Timestamp:
- Jan 27, 2017, 11:03:05 PM (10 years ago)
- Location:
- tags/Safari-604.1.5.0.1/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
testing/Internals.cpp (modified) (1 diff)
-
testing/Internals.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/Safari-604.1.5.0.1/Source/WebCore/ChangeLog
r211256 r211327 1 2017-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 1 13 2017-01-26 Chris Dumez <cdumez@apple.com> 2 14 -
tags/Safari-604.1.5.0.1/Source/WebCore/testing/Internals.cpp
r211253 r211327 3643 3643 } 3644 3644 3645 #if PLATFORM(IOS) 3646 void Internals::setQuickLookPassword(const String& password) 3647 { 3645 3648 #if USE(QUICK_LOOK) 3646 void Internals::setQuickLookPassword(const String& password)3647 {3648 3649 auto& quickLookHandleClient = MockQuickLookHandleClient::singleton(); 3649 3650 QuickLookHandle::setClientForTesting(&quickLookHandleClient); 3650 3651 quickLookHandleClient.setPassword(password); 3652 #else 3653 UNUSED_PARAM(password); 3654 #endif 3651 3655 } 3652 3656 #endif -
tags/Safari-604.1.5.0.1/Source/WebCore/testing/Internals.h
r211253 r211327 521 521 Vector<String> accessKeyModifiers() const; 522 522 523 #if USE(QUICK_LOOK)523 #if PLATFORM(IOS) 524 524 void setQuickLookPassword(const String&); 525 525 #endif
Note:
See TracChangeset
for help on using the changeset viewer.