Popular sites on the NTP: Try to keep the ordering constant
[chromium-blink-merge.git] / components / guest_view / renderer / iframe_guest_view_container.h
blobf3504efb846469b782903c989aad444b8c7f2892
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.
5 #ifndef COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_
6 #define COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_
8 #include "components/guest_view/renderer/guest_view_container.h"
10 namespace guest_view {
12 // A GuestViewContainer whose container element is backed by an out-of-process
13 // <iframe>.
14 // This container handles messages related to guest attachment in
15 // --site-per-process.
16 class IframeGuestViewContainer : public GuestViewContainer {
17 public:
18 explicit IframeGuestViewContainer(content::RenderFrame* render_frame);
19 ~IframeGuestViewContainer() override;
21 // GuestViewContainer overrides.
22 bool OnMessage(const IPC::Message& message) override;
24 private:
25 DISALLOW_COPY_AND_ASSIGN(IframeGuestViewContainer);
28 } // namespace guest_view
30 #endif // COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_