Changeset 260469 in webkit


Ignore:
Timestamp:
Apr 21, 2020 3:53:42 PM (4 years ago)
Author:
dbates@webkit.org
Message:

Attempt to fix the build after r260449
(https://bugs.webkit.org/show_bug.cgi?id=210697)

Wrap the C++ methods in namespace TestWebKitAPI so that IPhoneUserInterfaceSwizzler can be
used unqualified.

  • TestWebKitAPI/Tests/WebKitCocoa/RequestTextInputContext.mm:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r260452 r260469  
     12020-04-21  Daniel Bates  <dabates@apple.com>
     2
     3        Attempt to fix the build after r260449
     4        (https://bugs.webkit.org/show_bug.cgi?id=210697)
     5
     6        Wrap the C++ methods in namespace TestWebKitAPI so that IPhoneUserInterfaceSwizzler can be
     7        used unqualified.
     8
     9        * TestWebKitAPI/Tests/WebKitCocoa/RequestTextInputContext.mm:
     10
    1112020-04-21  Darin Adler  <darin@apple.com>
    212
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/RequestTextInputContext.mm

    r260449 r260469  
    4040#import <wtf/RetainPtr.h>
    4141
     42namespace TestWebKitAPI {
     43
    4244class TextInteractionForScope {
    4345public:
     
    5961    RetainPtr<_WKTextInputContext> m_textInputContext;
    6062};
     63
     64} // namespace TestWebKitAPI
    6165
    6266@implementation TestWKWebView (SynchronousTextInputContext)
     
    8892@end
    8993
     94namespace TestWebKitAPI {
     95
    9096static NSString *applyStyle(NSString *HTMLString)
    9197{
     
    746752}
    747753
     754} // namespace TestWebKitAPI
     755
    748756#endif // PLATFORM(IOS_FAMILY)
Note: See TracChangeset for help on using the changeset viewer.