Changeset 71019 in webkit


Ignore:
Timestamp:
Nov 1, 2010 5:56:16 AM (13 years ago)
Author:
satish@chromium.org
Message:

2010-11-01 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

This is the last part of a 4-sided patch for the language attribute
in speech text buttons. This patch removes what now is dead code
and re-enables the layout test introduced by bug 47089.
https://bugs.webkit.org/show_bug.cgi?id=47420

  • platform/chromium/test_expectations.txt:

2010-11-01 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

This is the last part of a 4-sided patch for the language attribute
in speech text buttons. This patch removes what now is dead code
and re-enables the layout test introduced by bug 47089.
https://bugs.webkit.org/show_bug.cgi?id=47420

  • public/WebSpeechInputControllerMock.h:
  • src/WebSpeechInputControllerMockImpl.cpp:
  • src/WebSpeechInputControllerMockImpl.h:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r71017 r71019  
     12010-11-01  Leandro Gracia Gil  <leandrogracia@google.com>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        This is the last part of a 4-sided patch for the language attribute
     6        in speech text buttons. This patch removes what now is dead code
     7        and re-enables the layout test introduced by bug 47089.
     8        https://bugs.webkit.org/show_bug.cgi?id=47420
     9
     10        * platform/chromium/test_expectations.txt:
     11
    1122010-11-01  Pavel Feldman  <pfeldman@chromium.org>
    213
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r71013 r71019  
    32473247BUGWK61188 : fast/repaint/iframe-scroll-repaint.html = IMAGE+TEXT IMAGE
    32483248
    3249 // Temporarily disabled for a 4-sided patch. Will be enabled again by BUGWK47420.
    3250 BUGWK47089 : fast/speech/input-text-language-tag.html = FAIL
    3251 
    32523249// These tests started failing presumably after r70850
    32533250BUGWK48627 MAC : fast/invalid/missing-end-tag.xhtml = IMAGE
  • trunk/WebKit/chromium/ChangeLog

    r71010 r71019  
     12010-11-01  Leandro Gracia Gil  <leandrogracia@google.com>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        This is the last part of a 4-sided patch for the language attribute
     6        in speech text buttons. This patch removes what now is dead code
     7        and re-enables the layout test introduced by bug 47089.
     8        https://bugs.webkit.org/show_bug.cgi?id=47420
     9
     10        * public/WebSpeechInputControllerMock.h:
     11        * src/WebSpeechInputControllerMockImpl.cpp:
     12        * src/WebSpeechInputControllerMockImpl.h:
     13
    1142010-10-31  Pavel Feldman  <pfeldman@chromium.org>
    215
  • trunk/WebKit/chromium/public/WebSpeechInputControllerMock.h

    r70863 r71019  
    4646
    4747    virtual void setMockRecognitionResult(const WebString& result, const WebString& language) = 0;
    48 
    49     // FIXME: this is a fix for a two-sided patch. Delete as soon as the chromium side is patched.
    50     // Chromium patch not uploaded yet, but will depend on http://codereview.chromium.org/3615005/show patch.
    51     virtual void setMockRecognitionResult(const WebString& result) = 0;
    5248};
    5349
  • trunk/WebKit/chromium/src/WebSpeechInputControllerMockImpl.cpp

    r70863 r71019  
    5656}
    5757
    58 void WebSpeechInputControllerMockImpl::setMockRecognitionResult(const WebString& result)
    59 {
    60     m_webcoreMock->setRecognitionResult(result, WebString::fromUTF8(""));
    61 }
    62 
    6358void WebSpeechInputControllerMockImpl::setMockRecognitionResult(const WebString& result, const WebString &language)
    6459{
  • trunk/WebKit/chromium/src/WebSpeechInputControllerMockImpl.h

    r70863 r71019  
    6565    void setMockRecognitionResult(const WebString& result, const WebString& language);
    6666
    67     // FIXME: this is a fix for a two-sided patch. Delete as soon as the chromium side is patched.
    68     // Chromium patch not uploaded yet, but will depend on http://codereview.chromium.org/3615005/show patch.
    69     void setMockRecognitionResult(const WebString& result);
    70 
    7167private:
    7268    OwnPtr<WebCore::SpeechInputClientMock> m_webcoreMock;
Note: See TracChangeset for help on using the changeset viewer.