| Index: content/public/browser/render_frame_host.h
|
| diff --git a/content/public/browser/render_frame_host.h b/content/public/browser/render_frame_host.h
|
| index e4dfc1fd077ef7fffa74896c2fdff720d7a7e879..46bf69f98b8f9fdcb9928ddc59abc19b07e46155 100644
|
| --- a/content/public/browser/render_frame_host.h
|
| +++ b/content/public/browser/render_frame_host.h
|
| @@ -29,6 +29,10 @@ namespace base {
|
| class Value;
|
| }
|
|
|
| +namespace resource_coordinator {
|
| +class ResourceCoordinatorInterface;
|
| +}
|
| +
|
| namespace service_manager {
|
| class BinderRegistry;
|
| class InterfaceProvider;
|
| @@ -85,6 +89,9 @@ class CONTENT_EXPORT RenderFrameHost : public IPC::Listener,
|
| // process.
|
| virtual SiteInstance* GetSiteInstance() = 0;
|
|
|
| + virtual resource_coordinator::ResourceCoordinatorInterface*
|
| + GetFrameResourceCoordinator() = 0;
|
| +
|
| // Returns the process for this frame.
|
| virtual RenderProcessHost* GetProcess() = 0;
|
|
|
|
|