Changeset 163456 in webkit


Ignore:
Timestamp:
Feb 5, 2014 10:11:33 AM (10 years ago)
Author:
jer.noble@apple.com
Message:

[WK2] [iOS] No video on embedded YouTube
https://bugs.webkit.org/show_bug.cgi?id=128237

Reviewed by Sam Weinig.

We were using the wrong #if directive; PLUGIN_PROXY_FOR_VIDEO is an ENABLE not a USE.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::updatePreferences):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r163449 r163456  
     12014-02-05  Jer Noble  <jer.noble@apple.com>
     2
     3        [WK2] [iOS] No video on embedded YouTube
     4        https://bugs.webkit.org/show_bug.cgi?id=128237
     5
     6        Reviewed by Sam Weinig.
     7
     8        We were using the wrong #if directive; PLUGIN_PROXY_FOR_VIDEO is an ENABLE not a USE.
     9
     10        * WebProcess/WebPage/WebPage.cpp:
     11        (WebKit::WebPage::updatePreferences):
     12
    1132014-02-05  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp

    r163335 r163456  
    25302530#endif
    25312531
    2532 #if USE(PLUGIN_PROXY_FOR_VIDEO)
    2533     settings->setVideoPluginProxyEnabled(false);
     2532#if ENABLE(PLUGIN_PROXY_FOR_VIDEO)
     2533    settings.setVideoPluginProxyEnabled(false);
    25342534#endif
    25352535
Note: See TracChangeset for help on using the changeset viewer.