Chromium Code Reviews| Index: content/public/browser/resource_request_info.h |
| =================================================================== |
| --- content/public/browser/resource_request_info.h (revision 238847) |
| +++ content/public/browser/resource_request_info.h (working copy) |
| @@ -63,6 +63,11 @@ |
| // Unique identifier (within the scope of the child process) for this request. |
| virtual int GetRequestID() const = 0; |
| + // The IPC route identifier of the RenderFrame. |
| + // TODO(jam): once we remove RenderView, we can remove this and just use |
| + // GetRouteID above. |
|
nasko
2013/12/05 22:43:45
Do we need to get rid of all RenderView or do we j
jam
2013/12/05 23:14:07
you're right, that's more specific and sooner. I'v
|
| + virtual int GetRenderFrameID() const = 0; |
| + |
| // True if GetFrameID() represents a main frame in the RenderView. |
| virtual bool IsMainFrame() const = 0; |