Changeset 163866 in webkit


Ignore:
Timestamp:
Feb 10, 2014 11:48:16 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r163856.
http://trac.webkit.org/changeset/163856
https://bugs.webkit.org/show_bug.cgi?id=128585

The build fix depends on r163848, which has been reverted
(Requested by notbenjamin on #webkit).

  • 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

    r163863 r163866  
     12014-02-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r163856.
     4        http://trac.webkit.org/changeset/163856
     5        https://bugs.webkit.org/show_bug.cgi?id=128585
     6
     7        The build fix depends on r163848, which has been reverted
     8        (Requested by notbenjamin on #webkit).
     9
     10        * UIProcess/ios/TextCheckerIOS.mm:
     11        (WebKit::TextChecker::checkTextOfParagraph):
     12        (WebKit::TextChecker::checkSpellingOfString):
     13        (WebKit::TextChecker::checkGrammarOfString):
     14
    1152014-02-10  Alexey Proskuryakov  <ap@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/ios/TextCheckerIOS.mm

    r163856 r163866  
    2929#import "TextCheckerState.h"
    3030#import <WebCore/NotImplemented.h>
    31 #import <wtf/text/StringView.h>
    3231
    3332using namespace WebCore;
     
    131130#if USE(UNIFIED_TEXT_CHECKING)
    132131
    133 Vector<TextCheckingResult> TextChecker::checkTextOfParagraph(int64_t, StringView, uint64_t)
     132Vector<TextCheckingResult> TextChecker::checkTextOfParagraph(int64_t, const UChar*, int, uint64_t)
    134133{
    135134    notImplemented();
     
    139138#endif
    140139
    141 void TextChecker::checkSpellingOfString(int64_t, StringView, int32_t&, int32_t&)
     140void TextChecker::checkSpellingOfString(int64_t, const UChar*, uint32_t, int32_t&, int32_t&)
    142141{
    143142    // Mac uses checkTextOfParagraph instead.
     
    145144}
    146145
    147 void TextChecker::checkGrammarOfString(int64_t, StringView, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
     146void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
    148147{
    149148    // Mac uses checkTextOfParagraph instead.
Note: See TracChangeset for help on using the changeset viewer.