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

Unified Diff: content/browser/renderer_host/render_widget_host_owner_delegate.h

Issue 1411203010: Separate RenderViewHost from RenderWidgetHost, part 4: delegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: done Created 5 years, 2 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: content/browser/renderer_host/render_widget_host_owner_delegate.h
diff --git a/content/browser/renderer_host/render_widget_host_owner_delegate.h b/content/browser/renderer_host/render_widget_host_owner_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..9da64637a147aea480c26f6bf8237f7adb9075ba
--- /dev/null
+++ b/content/browser/renderer_host/render_widget_host_owner_delegate.h
@@ -0,0 +1,26 @@
+// 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_
+#define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_
+
+#include "content/common/content_export.h"
+
+namespace content {
+
+//
+// RenderWidgetHostOwnerDelegate
+//
+// An interface implemented by an object owning a RenderWidgetHost. This is
+// intended to be temporary until the RenderViewHostImpl and
+// RenderWidgetHostImpl classes are disentangled; see http://crbug.com/542477
+// and http://crbug.com/478281.
+class CONTENT_EXPORT RenderWidgetHostOwnerDelegate {
+ protected:
+ virtual ~RenderWidgetHostOwnerDelegate() {}
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698