blob: 8d1d36a1e802b937aca50be7d7a9b9db01dedb07 [file] [log] [blame]
// Copyright 2015 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 "components/guest_view/renderer/guest_view_container_dispatcher.h"
namespace extensions {
class ExtensionsGuestViewContainerDispatcher
: public guest_view::GuestViewContainerDispatcher {
public:
ExtensionsGuestViewContainerDispatcher();
~ExtensionsGuestViewContainerDispatcher() override;
private:
// guest_view::GuestViewContainerDispatcher implementation.
bool HandlesMessage(const IPC::Message& message) override;
DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher);
};
} // namespace extensions