Changeset 163856 in webkit


Ignore:
Timestamp:
Feb 10, 2014 9:09:42 PM (10 years ago)
Author:
benjamin@webkit.org
Message:

Fix the iOS build after r163848

Patch by Benjamin Poulain <bpoulain@apple.com> on 2014-02-10

  • UIProcess/ios/TextCheckerIOS.mm:

(WebKit::TextChecker::checkTextOfParagraph):
(WebKit::TextChecker::checkSpellingOfString):
(WebKit::TextChecker::checkGrammarOfString):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r163849 r163856  
     12014-02-10  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Fix the iOS build after r163848
     4
     5        * UIProcess/ios/TextCheckerIOS.mm:
     6        (WebKit::TextChecker::checkTextOfParagraph):
     7        (WebKit::TextChecker::checkSpellingOfString):
     8        (WebKit::TextChecker::checkGrammarOfString):
     9
    1102014-02-10  Brady Eidson  <beidson@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/ios/TextCheckerIOS.mm

    r159724 r163856  
    2929#import "TextCheckerState.h"
    3030#import <WebCore/NotImplemented.h>
     31#import <wtf/text/StringView.h>
    3132
    3233using namespace WebCore;
     
    130131#if USE(UNIFIED_TEXT_CHECKING)
    131132
    132 Vector<TextCheckingResult> TextChecker::checkTextOfParagraph(int64_t, const UChar*, int, uint64_t)
     133Vector<TextCheckingResult> TextChecker::checkTextOfParagraph(int64_t, StringView, uint64_t)
    133134{
    134135    notImplemented();
     
    138139#endif
    139140
    140 void TextChecker::checkSpellingOfString(int64_t, const UChar*, uint32_t, int32_t&, int32_t&)
     141void TextChecker::checkSpellingOfString(int64_t, StringView, int32_t&, int32_t&)
    141142{
    142143    // Mac uses checkTextOfParagraph instead.
     
    144145}
    145146
    146 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
     147void TextChecker::checkGrammarOfString(int64_t, StringView, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
    147148{
    148149    // Mac uses checkTextOfParagraph instead.
Note: See TracChangeset for help on using the changeset viewer.