Changeset 238389 in webkit


Ignore:
Timestamp:
Nov 19, 2018 7:04:35 PM (5 years ago)
Author:
don.olmstead@sony.com
Message:

Simplify platform check in WebEditorClient
https://bugs.webkit.org/show_bug.cgi?id=191848

Reviewed by Fujii Hironori.

!PLATFORM(GTK) && !PLATFORM(COCOA) && !PLATFORM(WPE) can be better
represented as PLATFORM(WIN).

  • WebProcess/WebCoreSupport/WebEditorClient.cpp:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r238388 r238389  
     12018-11-19  Don Olmstead  <don.olmstead@sony.com>
     2
     3        Simplify platform check in WebEditorClient
     4        https://bugs.webkit.org/show_bug.cgi?id=191848
     5
     6        Reviewed by Fujii Hironori.
     7
     8        !PLATFORM(GTK) && !PLATFORM(COCOA) && !PLATFORM(WPE) can be better
     9        represented as PLATFORM(WIN).
     10
     11        * WebProcess/WebCoreSupport/WebEditorClient.cpp:
     12
    1132018-11-19  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp

    r237624 r238389  
    360360}
    361361
    362 #if !PLATFORM(GTK) && !PLATFORM(COCOA) && !PLATFORM(WPE)
     362#if PLATFORM(WIN)
    363363void WebEditorClient::handleKeyboardEvent(KeyboardEvent* event)
    364364{
     
    371371    notImplemented();
    372372}
    373 #endif
     373#endif // PLATFORM(WIN)
    374374
    375375void WebEditorClient::textFieldDidBeginEditing(Element* element)
Note: See TracChangeset for help on using the changeset viewer.