OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/macros.h" | 5 #include "base/macros.h" |
6 #include "components/guest_view/renderer/guest_view_container_dispatcher.h" | 6 #include "components/guest_view/renderer/guest_view_container_dispatcher.h" |
7 | 7 |
8 namespace extensions { | 8 namespace extensions { |
9 | 9 |
10 class ExtensionsGuestViewContainerDispatcher | 10 class ExtensionsGuestViewContainerDispatcher |
11 : public guest_view::GuestViewContainerDispatcher { | 11 : public guest_view::GuestViewContainerDispatcher { |
12 public: | 12 public: |
13 ExtensionsGuestViewContainerDispatcher(); | 13 ExtensionsGuestViewContainerDispatcher(); |
14 ~ExtensionsGuestViewContainerDispatcher() override; | 14 ~ExtensionsGuestViewContainerDispatcher() override; |
15 | 15 |
16 private: | 16 protected: |
17 // guest_view::GuestViewContainerDispatcher implementation. | 17 // guest_view::GuestViewContainerDispatcher implementation. |
18 bool HandlesMessage(const IPC::Message& message) override; | 18 bool HandlesMessage(const IPC::Message& message) override; |
19 | 19 |
20 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher); | 20 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher); |
21 }; | 21 }; |
22 | 22 |
23 } // namespace extensions | 23 } // namespace extensions |
OLD | NEW |