Changeset 88615 in webkit


Ignore:
Timestamp:
Jun 12, 2011 9:57:54 AM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-06-12 Adam Barth <abarth@webkit.org>

Reviewed by Andreas Kling.

Minor user-gesture related cleanup
https://bugs.webkit.org/show_bug.cgi?id=62511

In reading the user gesture code, I noticed that these lines of code
should be deleted because they don't do anything.

  • bindings/v8/NPV8Object.cpp:
  • html/HTMLAnchorElement.cpp:
  • html/HTMLVideoElement.idl:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r88613 r88615  
     12011-06-12  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Minor user-gesture related cleanup
     6        https://bugs.webkit.org/show_bug.cgi?id=62511
     7
     8        In reading the user gesture code, I noticed that these lines of code
     9        should be deleted because they don't do anything.
     10
     11        * bindings/v8/NPV8Object.cpp:
     12        * html/HTMLAnchorElement.cpp:
     13        * html/HTMLVideoElement.idl:
     14
    1152011-06-11  Nikolas Zimmermann  <nzimmermann@rim.com>
    216
  • trunk/Source/WebCore/bindings/v8/NPV8Object.cpp

    r86949 r88615  
    3535#include "PlatformString.h"
    3636#include "ScriptSourceCode.h"
    37 #include "UserGestureIndicator.h"
    3837#include "V8GCController.h"
    3938#include "V8Helpers.h"
  • trunk/Source/WebCore/html/HTMLAnchorElement.cpp

    r86330 r88615  
    4040#include "SecurityOrigin.h"
    4141#include "Settings.h"
    42 #include "UserGestureIndicator.h"
    4342
    4443namespace WebCore {
  • trunk/Source/WebCore/html/HTMLVideoElement.idl

    r79301 r88615  
    4040        [NeedsUserGestureCheck] void webkitEnterFullscreen() raises (DOMException);
    4141        void webkitExitFullscreen();
    42    
    43         [NeedsUserGestureCheck] void webkitEnterFullScreen() raises (DOMException);
    44         void webkitExitFullScreen();
    4542
    4643#if defined(ENABLE_MEDIA_STATISTICS) && ENABLE_MEDIA_STATISTICS
Note: See TracChangeset for help on using the changeset viewer.