Chromium Code Reviews| Index: chrome/browser/ui/webui/media_router/media_router_ui.h |
| diff --git a/chrome/browser/ui/webui/media_router/media_router_ui.h b/chrome/browser/ui/webui/media_router/media_router_ui.h |
| index bc58d4d4c185c6a39e4d31f55c3d697ab47faa21..69863bc62735515366e0ddc2141c79808dea847c 100644 |
| --- a/chrome/browser/ui/webui/media_router/media_router_ui.h |
| +++ b/chrome/browser/ui/webui/media_router/media_router_ui.h |
| @@ -44,6 +44,7 @@ class Browser; |
| namespace media_router { |
| class CreatePresentationConnectionRequest; |
| +class EventPageRequestManager; |
| class IssuesObserver; |
| class MediaRoute; |
| class MediaRouter; |
| @@ -414,6 +415,9 @@ class MediaRouterUI |
| // Pointer to the MediaRouter for this instance's BrowserContext. |
| MediaRouter* router_; |
| + // Request manager for the Media Router component extension. |
| + EventPageRequestManager* event_page_request_manager_; |
|
imcheng
2017/07/07 21:15:43
Make the pointer const.
takumif
2017/07/07 21:58:58
Making it a pointer to a const object. The pointer
|
| + |
| // The start time for UI initialization metrics timer. When a dialog has been |
| // been painted and initialized with initial data, this should be cleared. |
| base::Time start_time_; |