Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: components/guest_view/renderer/iframe_guest_view_container.h

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: sync Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/guest_view/renderer/iframe_guest_view_container.h
diff --git a/components/guest_view/renderer/iframe_guest_view_container.h b/components/guest_view/renderer/iframe_guest_view_container.h
new file mode 100644
index 0000000000000000000000000000000000000000..f3504efb846469b782903c989aad444b8c7f2892
--- /dev/null
+++ b/components/guest_view/renderer/iframe_guest_view_container.h
@@ -0,0 +1,30 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_
+#define COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_
+
+#include "components/guest_view/renderer/guest_view_container.h"
+
+namespace guest_view {
+
+// A GuestViewContainer whose container element is backed by an out-of-process
+// <iframe>.
+// This container handles messages related to guest attachment in
+// --site-per-process.
+class IframeGuestViewContainer : public GuestViewContainer {
+ public:
+ explicit IframeGuestViewContainer(content::RenderFrame* render_frame);
+ ~IframeGuestViewContainer() override;
+
+ // GuestViewContainer overrides.
+ bool OnMessage(const IPC::Message& message) override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(IframeGuestViewContainer);
+};
+
+} // namespace guest_view
+
+#endif // COMPONENTS_GUEST_VIEW_RENDERER_IFRAME_GUEST_VIEW_CONTAINER_H_
« no previous file with comments | « components/guest_view/renderer/guest_view_container.cc ('k') | components/guest_view/renderer/iframe_guest_view_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698