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_FRAMELET_RENDERER_FRAMELET_CONTAINER_H_ |
| 6 #define COMPONENTS_FRAMELET_RENDERER_FRAMELET_CONTAINER_H_ |
| 7 |
| 8 #include "components/guest_view/renderer/guest_view_container.h" |
| 9 |
| 10 namespace guest_view { |
| 11 |
| 12 class FrameletContainer : public GuestViewContainer { |
| 13 public: |
| 14 explicit FrameletContainer(content::RenderFrame* render_frame); |
| 15 |
| 16 private: |
| 17 DISALLOW_COPY_AND_ASSIGN(FrameletContainer); |
| 18 }; |
| 19 |
| 20 } // namespace guest_view |
| 21 #endif // COMPONENTS_FRAMELET_RENDERER_FRAMELET_CONTAINER_H_ |
OLD | NEW |