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

Side by Side 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, 1 month 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 unified diff | Download patch
OLDNEW
(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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_
7
8 #include "content/common/content_export.h"
9
10 namespace content {
11
12 //
13 // RenderWidgetHostOwnerDelegate
14 //
15 // An interface implemented by an object owning a RenderWidgetHost. This is
16 // intended to be temporary until the RenderViewHostImpl and
17 // RenderWidgetHostImpl classes are disentangled; see http://crbug.com/542477
18 // and http://crbug.com/478281.
19 class CONTENT_EXPORT RenderWidgetHostOwnerDelegate {
20 protected:
21 virtual ~RenderWidgetHostOwnerDelegate() {}
22 };
23
24 } // namespace content
25
26 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_OWNER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698