blob: fb201b109e82f9e03d91e7e9503803c80cb58792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "webkit/api/src/TemporaryGlue.h"
#include "webkit/glue/webview_impl.h"
using WebCore::Frame;
namespace WebKit {
// static
WebMediaPlayer* TemporaryGlue::createWebMediaPlayer(
WebMediaPlayerClient* client, Frame* frame) {
WebViewImpl* webview = WebFrameImpl::FromFrame(frame)->GetWebViewImpl();
if (!webview || !webview->delegate())
return NULL;
return webview->delegate()->CreateWebMediaPlayer(client);
}
} // namespace WebKit
|