Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_ | |
| 6 #define COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_ | |
| 7 | |
| 8 #include "components/guest_view/renderer/guest_view_container.h" | |
| 9 | |
| 10 namespace guest_view { | |
| 11 | |
| 12 class IframeGuestViewContainer : public GuestViewContainer { | |
|
Fady Samuel
2015/06/24 22:01:10
nit: Description of this class and what it does th
lazyboy
2015/06/24 23:01:51
Done.
| |
| 13 public: | |
| 14 explicit IframeGuestViewContainer(content::RenderFrame* render_frame); | |
| 15 ~IframeGuestViewContainer() override; | |
| 16 | |
| 17 // GuestViewContainer overrides. | |
| 18 bool OnMessage(const IPC::Message& message) override; | |
| 19 | |
| 20 private: | |
| 21 DISALLOW_COPY_AND_ASSIGN(IframeGuestViewContainer); | |
| 22 }; | |
| 23 | |
| 24 } // namespace guest_view | |
| 25 | |
| 26 #endif // COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_ | |
| OLD | NEW |