blob: f745783740a2e51daf0a07418ccde86d78b6929d [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.
#ifndef NavigatorContentUtilsClientImpl_h
#define NavigatorContentUtilsClientImpl_h
#include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
#include "platform/heap/Handle.h"
#include "platform/weborigin/KURL.h"
namespace blink {
class WebLocalFrameImpl;
class NavigatorContentUtilsClientImpl final
: public NavigatorContentUtilsClient {
public:
static NavigatorContentUtilsClientImpl* Create(WebLocalFrameImpl*);
~NavigatorContentUtilsClientImpl() override {}
void RegisterProtocolHandler(const String& scheme,
const KURL&,
const String& title) override;
CustomHandlersState IsProtocolHandlerRegistered(const String& scheme,
const KURL&) override;
void UnregisterProtocolHandler(const String& scheme, const KURL&) override;
DECLARE_VIRTUAL_TRACE();
private:
explicit NavigatorContentUtilsClientImpl(WebLocalFrameImpl*);
Member<WebLocalFrameImpl> web_frame_;
};
} // namespace blink
#endif // NavigatorContentUtilsClientImpl_h