Changeset 70523 in webkit


Ignore:
Timestamp:
Oct 26, 2010 8:47:29 AM (13 years ago)
Author:
satish@chromium.org
Message:

2010-10-26 Satish Sampath <satish@chromium.org>

Reviewed by Steve Block.

Remove obsolete public/API methods in chromium port.
https://bugs.webkit.org/show_bug.cgi?id=48330

  • public/WebSpeechInputListener.h:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r70522 r70523  
     12010-10-26  Satish Sampath  <satish@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        Remove obsolete public/API methods in chromium port.
     6        https://bugs.webkit.org/show_bug.cgi?id=48330
     7
     8        * public/WebSpeechInputListener.h:
     9
    1102010-10-26  Jeremy Orlow  <jorlow@chromium.org>
    211
  • trunk/WebKit/chromium/public/WebSpeechInputListener.h

    r70494 r70523  
    5858    virtual void setRecognitionResult(int, const WebSpeechInputResultArray&) { WEBKIT_ASSERT_NOT_REACHED(); }
    5959
    60     // FIXME: Remove this once the chromium side is able to send multiple recognition results
    61     // using the above call.
    62     virtual void setRecognitionResult(int requestId, const WebString& result)
    63     {
    64         WebSpeechInputResultArray results(static_cast<size_t>(1));
    65         results[0].set(result, 1.0);
    66         setRecognitionResult(requestId, results);
    67     }
    68 
    6960    // Informs that speech recognition has completed. This gets invoked irrespective of whether
    7061    // recognition was succesful or not, whether setRecognitionResult() was invoked or not. The
Note: See TracChangeset for help on using the changeset viewer.