Changeset 179773 in webkit


Ignore:
Timestamp:
Feb 6, 2015 5:38:15 PM (9 years ago)
Author:
Brent Fulgham
Message:

Add youtube-nocookie URL to isYouTubeURL predicate
https://bugs.webkit.org/show_bug.cgi?id=141347
<rdar://problem/19430657>

Reviewed by Eric Carlson.

  • Modules/plugins/YouTubePluginReplacement.cpp:

(WebCore::isYouTubeURL): Update for additional youtube-nocookie site.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r179772 r179773  
     12015-02-06  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Add youtube-nocookie URL to isYouTubeURL predicate
     4        https://bugs.webkit.org/show_bug.cgi?id=141347
     5        <rdar://problem/19430657>
     6
     7        Reviewed by Eric Carlson.
     8
     9        * Modules/plugins/YouTubePluginReplacement.cpp:
     10        (WebCore::isYouTubeURL): Update for additional youtube-nocookie site.
     11
    1122015-02-06  Said Abou-Hallawa  <sabouhallawa@apple.com>
    213
  • trunk/Source/WebCore/Modules/plugins/YouTubePluginReplacement.cpp

    r177259 r179773  
    187187        || hostName == "youtu.be"
    188188        || hostName == "www.youtube.com"
    189         || hostName == "youtube.com";
     189        || hostName == "youtube.com"
     190        || hostName == "www.youtube-nocookie.com"
     191        || hostName == "youtube-nocookie.com";
    190192}
    191193
Note: See TracChangeset for help on using the changeset viewer.