Changeset 211324 in webkit
- Timestamp:
- Jan 27, 2017, 10:49:15 PM (10 years ago)
- Location:
- trunk/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
-
trunk/Source/WebCore/ChangeLog
r211314 r211324 1 2017-01-27 Andy Estes <aestes@apple.com> 2 3 Fix the iOS build when USE(QUICK_LOOK) is disabled. 4 5 * testing/Internals.cpp: 6 (WebCore::Internals::setQuickLookPassword): 7 * testing/Internals.h: 8 1 9 2017-01-27 Yusuke Suzuki <utatane.tea@gmail.com> 2 10 -
trunk/Source/WebCore/testing/Internals.cpp
r211253 r211324 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 -
trunk/Source/WebCore/testing/Internals.h
r211253 r211324 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.