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 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_ |
OLD | NEW |