Title: [106965] trunk
Revision
106965
Author
[email protected]
Date
2012-02-07 11:26:26 -0800 (Tue, 07 Feb 2012)

Log Message

Chromium: remove WebSpeechInputResult::set
https://bugs.webkit.org/show_bug.cgi?id=77977

Reviewed by Darin Fisher.

It was renamed to assign() in r106475.

Source/WebKit/chromium:

* public/WebSpeechInputResult.h:

Tools:

* DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
(makeRectResult):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (106964 => 106965)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-02-07 19:18:47 UTC (rev 106964)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-02-07 19:26:26 UTC (rev 106965)
@@ -1,3 +1,14 @@
+2012-02-07  Hans Wennborg  <[email protected]>
+
+        Chromium: remove WebSpeechInputResult::set
+        https://bugs.webkit.org/show_bug.cgi?id=77977
+
+        Reviewed by Darin Fisher.
+
+        It was renamed to assign() in r106475.
+
+        * public/WebSpeechInputResult.h:
+
 2012-02-07  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r106935.

Modified: trunk/Source/WebKit/chromium/public/WebSpeechInputResult.h (106964 => 106965)


--- trunk/Source/WebKit/chromium/public/WebSpeechInputResult.h	2012-02-07 19:18:47 UTC (rev 106964)
+++ trunk/Source/WebKit/chromium/public/WebSpeechInputResult.h	2012-02-07 19:26:26 UTC (rev 106965)
@@ -45,9 +45,6 @@
     WebSpeechInputResult(const WebSpeechInputResult& other) { assign(other); }
     ~WebSpeechInputResult() { reset(); }
 
-    // FIXME: Remove this when Chromium has been updated.
-    void set(const WebString& utterance, double confidence) { assign(utterance, confidence); }
-
     WEBKIT_EXPORT void assign(const WebString& utterance, double confidence);
     WEBKIT_EXPORT void assign(const WebSpeechInputResult& other);
     WEBKIT_EXPORT void reset();

Modified: trunk/Tools/ChangeLog (106964 => 106965)


--- trunk/Tools/ChangeLog	2012-02-07 19:18:47 UTC (rev 106964)
+++ trunk/Tools/ChangeLog	2012-02-07 19:26:26 UTC (rev 106965)
@@ -1,3 +1,15 @@
+2012-02-07  Hans Wennborg  <[email protected]>
+
+        Chromium: remove WebSpeechInputResult::set
+        https://bugs.webkit.org/show_bug.cgi?id=77977
+
+        Reviewed by Darin Fisher.
+
+        It was renamed to assign() in r106475.
+
+        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
+        (makeRectResult):
+
 2012-02-07  Allan Sandfeld Jensen  <[email protected]>
 
         [Qt] Give emulated touch-point a radius

Modified: trunk/Tools/DumpRenderTree/chromium/MockWebSpeechInputController.cpp (106964 => 106965)


--- trunk/Tools/DumpRenderTree/chromium/MockWebSpeechInputController.cpp	2012-02-07 19:18:47 UTC (rev 106964)
+++ trunk/Tools/DumpRenderTree/chromium/MockWebSpeechInputController.cpp	2012-02-07 19:26:26 UTC (rev 106965)
@@ -124,7 +124,7 @@
     sb.append(String::number(rect.height));
 
     WebSpeechInputResult res;
-    res.set(WebString(sb.characters(), sb.length()), 1.0);
+    res.assign(WebString(sb.characters(), sb.length()), 1.0);
 
     WebSpeechInputResultArray results;
     results.assign(&res, 1);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to