| 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 "components/guest_view/renderer/guest_view_container_dispatcher.h" | 6 #include "components/guest_view/renderer/guest_view_container_dispatcher.h" |
| 6 | 7 |
| 7 namespace extensions { | 8 namespace extensions { |
| 8 | 9 |
| 9 class ExtensionsGuestViewContainerDispatcher | 10 class ExtensionsGuestViewContainerDispatcher |
| 10 : public guest_view::GuestViewContainerDispatcher { | 11 : public guest_view::GuestViewContainerDispatcher { |
| 11 public: | 12 public: |
| 12 ExtensionsGuestViewContainerDispatcher(); | 13 ExtensionsGuestViewContainerDispatcher(); |
| 13 ~ExtensionsGuestViewContainerDispatcher() override; | 14 ~ExtensionsGuestViewContainerDispatcher() override; |
| 14 | 15 |
| 15 private: | 16 private: |
| 16 // guest_view::GuestViewContainerDispatcher implementation. | 17 // guest_view::GuestViewContainerDispatcher implementation. |
| 17 bool HandlesMessage(const IPC::Message& message) override; | 18 bool HandlesMessage(const IPC::Message& message) override; |
| 18 | 19 |
| 19 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher); | 20 DISALLOW_COPY_AND_ASSIGN(ExtensionsGuestViewContainerDispatcher); |
| 20 }; | 21 }; |
| 21 | 22 |
| 22 } // namespace extensions | 23 } // namespace extensions |
| OLD | NEW |