blob: 20e1f5af26b516f4fa0e3ca71f10a786895b0558 [file] [log] [blame]
// Copyright 2014 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 "web/NavigatorContentUtilsClientImpl.h"
#include "public/web/WebFrameClient.h"
#include "web/WebLocalFrameImpl.h"
namespace blink {
NavigatorContentUtilsClientImpl* NavigatorContentUtilsClientImpl::create(WebLocalFrameImpl* webFrame)
{
return new NavigatorContentUtilsClientImpl(webFrame);
}
NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(WebLocalFrameImpl* webFrame)
: m_webFrame(webFrame)
{
}
DEFINE_TRACE(NavigatorContentUtilsClientImpl)
{
visitor->trace(m_webFrame);
NavigatorContentUtilsClient::trace(visitor);
}
void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& scheme, const KURL& url, const String& title)
{
m_webFrame->client()->registerProtocolHandler(scheme, url, title);
}
NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientImpl::isProtocolHandlerRegistered(const String& scheme, const KURL& url)
{
return static_cast<NavigatorContentUtilsClient::CustomHandlersState>(m_webFrame->client()->isProtocolHandlerRegistered(scheme, url));
}
void NavigatorContentUtilsClientImpl::unregisterProtocolHandler(const String& scheme, const KURL& url)
{
m_webFrame->client()->unregisterProtocolHandler(scheme, url);
}
} // namespace blink