Changeset 54195 in webkit


Ignore:
Timestamp:
Feb 1, 2010 7:19:09 PM (14 years ago)
Author:
hamaji@chromium.org
Message:

2010-02-01 Shinichiro Hamaji <hamaji@chromium.org>

Unreviewed attempt to fix the broken build.

This was introduced in http://trac.webkit.org/changeset/54182

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::performMediaPlayerAction):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r54191 r54195  
     12010-02-01  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Unreviewed attempt to fix the broken build.
     4
     5        This was introduced in http://trac.webkit.org/changeset/54182
     6
     7        * src/WebViewImpl.cpp:
     8        (WebKit::WebViewImpl::performMediaPlayerAction):
     9
    1102010-01-27  Matt Perry  <mpcomplete@chromium.org>
    211
  • trunk/WebKit/chromium/src/WebViewImpl.cpp

    r54152 r54195  
    13171317    case WebMediaPlayerAction::Play:
    13181318        if (action.enable)
    1319             mediaElement->play();
     1319            mediaElement->play(mediaElement->processingUserGesture());
    13201320        else
    1321             mediaElement->pause();
     1321            mediaElement->pause(mediaElement->processingUserGesture());
    13221322        break;
    13231323    case WebMediaPlayerAction::Mute:
Note: See TracChangeset for help on using the changeset viewer.