Title: [138120] trunk/Source/WebCore
Revision
138120
Author
commit-qu...@webkit.org
Date
2012-12-18 23:33:00 -0800 (Tue, 18 Dec 2012)

Log Message

[EFL] regression(r138071) Add mission functions for build fix
https://bugs.webkit.org/show_bug.cgi?id=105392

Unreviewed build fix.

r138071 add new functions to LocalizedStrings.cpp, but EFL port doesn't use them.
So, add those functions to LocalizedStringsEfl.cpp

Patch by KyungTae Kim <ktf....@samsung.com> on 2012-12-18

* platform/efl/LocalizedStringsEfl.cpp:
(WebCore):
(WebCore::textTrackClosedCaptionsText):
(WebCore::textTrackSubtitlesText):
(WebCore::textTrackOffText):
(WebCore::textTrackNoLabelText):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (138119 => 138120)


--- trunk/Source/WebCore/ChangeLog	2012-12-19 06:58:14 UTC (rev 138119)
+++ trunk/Source/WebCore/ChangeLog	2012-12-19 07:33:00 UTC (rev 138120)
@@ -1,3 +1,20 @@
+2012-12-18  KyungTae Kim  <ktf....@samsung.com>
+
+        [EFL] regression(r138071) Add mission functions for build fix
+        https://bugs.webkit.org/show_bug.cgi?id=105392
+
+        Unreviewed build fix.
+
+        r138071 add new functions to LocalizedStrings.cpp, but EFL port doesn't use them.
+        So, add those functions to LocalizedStringsEfl.cpp 
+
+        * platform/efl/LocalizedStringsEfl.cpp:
+        (WebCore):
+        (WebCore::textTrackClosedCaptionsText):
+        (WebCore::textTrackSubtitlesText):
+        (WebCore::textTrackOffText):
+        (WebCore::textTrackNoLabelText):
+
 2012-12-18  Eugene Klyuchnikov  <eus...@chromium.org>
 
         Web Inspector: [Chromium] profiler - differentiate between native code (program) and idle time

Modified: trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp (138119 => 138120)


--- trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp	2012-12-19 06:58:14 UTC (rev 138119)
+++ trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp	2012-12-19 07:33:00 UTC (rev 138120)
@@ -594,4 +594,26 @@
     return String::fromUTF8(key, strlen(key));
 }
 
+#if ENABLE(VIDEO_TRACK)
+String textTrackClosedCaptionsText()
+{
+    return String::fromUTF8("Closed Captions");
 }
+
+String textTrackSubtitlesText()
+{
+    return String::fromUTF8("Subtitles");
+}
+
+String textTrackOffText()
+{
+    return String::fromUTF8("Off");
+}
+
+String textTrackNoLabelText()
+{
+    return String::fromUTF8("No label");
+}
+#endif
+
+}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to