Changeset 100977 in webkit


Ignore:
Timestamp:
Nov 21, 2011 7:19:30 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r100970.
http://trac.webkit.org/changeset/100970
https://bugs.webkit.org/show_bug.cgi?id=72925

Caused AssociatedURLLoaderTest.Success to fail (Requested by
koz on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-11-21

  • WebKit.gyp:
  • public/WebUserMediaClient.h: Removed.
  • public/WebUserMediaRequest.h: Removed.
  • public/WebViewClient.h:
  • src/UserMediaClientImpl.cpp: Removed.
  • src/UserMediaClientImpl.h: Removed.
  • src/WebUserMediaRequest.cpp: Removed.
  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::WebViewImpl):

  • src/WebViewImpl.h:
Location:
trunk/Source/WebKit/chromium
Files:
5 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r100970 r100977  
     12011-11-21  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r100970.
     4        http://trac.webkit.org/changeset/100970
     5        https://bugs.webkit.org/show_bug.cgi?id=72925
     6
     7        Caused AssociatedURLLoaderTest.Success to fail (Requested by
     8        koz on #webkit).
     9
     10        * WebKit.gyp:
     11        * public/WebUserMediaClient.h: Removed.
     12        * public/WebUserMediaRequest.h: Removed.
     13        * public/WebViewClient.h:
     14        * src/UserMediaClientImpl.cpp: Removed.
     15        * src/UserMediaClientImpl.h: Removed.
     16        * src/WebUserMediaRequest.cpp: Removed.
     17        * src/WebViewImpl.cpp:
     18        (WebKit::WebViewImpl::WebViewImpl):
     19        * src/WebViewImpl.h:
     20
    1212011-11-21  Tommy Widenflycht  <tommyw@google.com>
    222
  • trunk/Source/WebKit/chromium/WebKit.gyp

    r100970 r100977  
    326326                'public/WebURLRequest.h',
    327327                'public/WebURLResponse.h',
    328                 'public/WebUserMediaClient.h',
    329                 'public/WebUserMediaRequest.h',
    330328                'public/WebVector.h',
    331329                'public/WebView.h',
     
    455453                'src/StorageNamespaceProxy.cpp',
    456454                'src/StorageNamespaceProxy.h',
    457                 'src/UserMediaClientImpl.h',
    458                 'src/UserMediaClientImpl.cpp',
    459455                'src/WebTextCheckingCompletionImpl.h',
    460456                'src/WebTextCheckingCompletionImpl.cpp',
     
    640636                'src/WebURLResponsePrivate.h',
    641637                'src/WebURLError.cpp',
    642                 'src/WebUserMediaRequest.cpp',
    643638                'src/WebViewImpl.cpp',
    644639                'src/WebViewImpl.h',
  • trunk/Source/WebKit/chromium/public/WebViewClient.h

    r100970 r100977  
    6868class WebURL;
    6969class WebURLRequest;
    70 class WebUserMediaClient;
    7170class WebView;
    7271class WebWidget;
     
    321320    }
    322321
    323     // Media Streams -------------------------------------------------------
    324 
    325     virtual WebUserMediaClient* userMediaClient() { return 0; }
    326 
    327322protected:
    328323    ~WebViewClient() { }
  • trunk/Source/WebKit/chromium/src/WebViewImpl.cpp

    r100970 r100977  
    107107#include "TypingCommand.h"
    108108#include "UserGestureIndicator.h"
    109 #include "UserMediaClientImpl.h"
    110109#include "Vector.h"
    111110#include "WebAccessibilityObject.h"
     
    372371    , m_gestureRecognizer(WebCore::PlatformGestureRecognizer::create())
    373372#endif
    374 #if ENABLE(MEDIA_STREAM)
    375     , m_userMediaClient(adoptPtr(new UserMediaClientImpl(client)))
    376 #endif
    377373{
    378374    // WebKit/win/WebView.cpp does the same thing, except they call the
     
    397393    pageClients.geolocationClient = m_geolocationClientProxy.get();
    398394    pageClients.backForwardClient = BackForwardListChromium::create(this);
    399 #if ENABLE(MEDIA_STREAM)
    400     pageClients.userMediaClient = m_userMediaClient.get();
    401 #endif
    402395
    403396    m_page = adoptPtr(new Page(pageClients));
  • trunk/Source/WebKit/chromium/src/WebViewImpl.h

    r100970 r100977  
    8282class GeolocationClientProxy;
    8383class SpeechInputClientImpl;
    84 class UserMediaClientImpl;
    8584class WebAccessibilityObject;
    8685class WebCompositorImpl;
     
    627626    OwnPtr<WebCore::PlatformGestureRecognizer> m_gestureRecognizer;
    628627#endif
    629 
    630 #if ENABLE(MEDIA_STREAM)
    631     OwnPtr<UserMediaClientImpl> m_userMediaClient;
    632 #endif
    633628};
    634629
Note: See TracChangeset for help on using the changeset viewer.