summaryrefslogtreecommitdiffstats
path: root/extensions/renderer/guest_view/extensions_guest_view_container_dispatcher.h
blob: b04ee04f1e0edecce47d7f1d97f774f5364f483c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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 "base/macros.h"
#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