Title: [115809] trunk/Source/WebKit/efl
Revision
115809
Author
[email protected]
Date
2012-05-02 03:14:59 -0700 (Wed, 02 May 2012)

Log Message

[EFL] Fix typo introduced in r115800.
https://bugs.webkit.org/show_bug.cgi?id=85354

Patch by Dongwoo Im <[email protected]> on 2012-05-02
Reviewed by Nikolas Zimmermann.

* ewk/ewk_view.cpp:
(_Ewk_View_Private_Data): Assign 1 bit to the boolean attribute, webAudio.

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (115808 => 115809)


--- trunk/Source/WebKit/efl/ChangeLog	2012-05-02 10:00:28 UTC (rev 115808)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-05-02 10:14:59 UTC (rev 115809)
@@ -1,5 +1,15 @@
 2012-05-02  Dongwoo Im  <[email protected]>
 
+        [EFL] Fix typo introduced in r115800.
+        https://bugs.webkit.org/show_bug.cgi?id=85354
+
+        Reviewed by Nikolas Zimmermann.
+
+        * ewk/ewk_view.cpp:
+        (_Ewk_View_Private_Data): Assign 1 bit to the boolean attribute, webAudio.
+
+2012-05-02  Dongwoo Im  <[email protected]>
+
         [EFL] Implement the Web Audio API feature.
         https://bugs.webkit.org/show_bug.cgi?id=78688
 

Modified: trunk/Source/WebKit/efl/ewk/ewk_view.cpp (115808 => 115809)


--- trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2012-05-02 10:00:28 UTC (rev 115808)
+++ trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2012-05-02 10:14:59 UTC (rev 115809)
@@ -225,7 +225,7 @@
         bool pageCache : 1;
         bool enableXSSAuditor : 1;
 #if ENABLE(WEB_AUDIO)
-        bool webAudio : 0;
+        bool webAudio : 1;
 #endif
         bool webGLEnabled : 1;
         bool tabsToLinks : 1;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to