summaryrefslogtreecommitdiffstats
path: root/webkit/glue/temporary_glue.cc
blob: 23724ed218d15bef611a8f54a47170e709ea0ad6 (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
25
26
27
// 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 <wtf/Assertions.h>
#undef LOG

#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