| Index: chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| diff --git a/chrome/browser/media/router/mojo/media_router_mojo_impl.h b/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| index 3d014bce99975c348e431d4d9ea615aeee994751..6aba8ddf3f7235d660c47eb2bcd07bda83a1fcef 100644
|
| --- a/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| +++ b/chrome/browser/media/router/mojo/media_router_mojo_impl.h
|
| @@ -73,14 +73,14 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| content::WebContents* web_contents,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record) override;
|
| + bool incognito) override;
|
| void JoinRoute(const MediaSource::Id& source_id,
|
| const std::string& presentation_id,
|
| const GURL& origin,
|
| content::WebContents* web_contents,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record) override;
|
| + bool incognito) override;
|
| void ConnectRouteByRouteId(
|
| const MediaSource::Id& source,
|
| const MediaRoute::Id& route_id,
|
| @@ -88,7 +88,7 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| content::WebContents* web_contents,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record) override;
|
| + bool incognito) override;
|
| void TerminateRoute(const MediaRoute::Id& route_id) override;
|
| void DetachRoute(const MediaRoute::Id& route_id) override;
|
| void SendRouteMessage(const MediaRoute::Id& route_id,
|
| @@ -236,14 +236,14 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| int tab_id,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record);
|
| + bool incognito);
|
| void DoJoinRoute(const MediaSource::Id& source_id,
|
| const std::string& presentation_id,
|
| const std::string& origin,
|
| int tab_id,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record);
|
| + bool incognito);
|
| void DoConnectRouteByRouteId(
|
| const MediaSource::Id& source_id,
|
| const MediaRoute::Id& route_id,
|
| @@ -251,7 +251,7 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| int tab_id,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| base::TimeDelta timeout,
|
| - bool off_the_record);
|
| + bool incognito);
|
| void DoTerminateRoute(const MediaRoute::Id& route_id);
|
| void DoDetachRoute(const MediaRoute::Id& route_id);
|
| void DoSendSessionMessage(const MediaRoute::Id& route_id,
|
| @@ -311,7 +311,7 @@ class MediaRouterMojoImpl : public MediaRouterBase,
|
| // into a local callback.
|
| void RouteResponseReceived(
|
| const std::string& presentation_id,
|
| - bool off_the_record,
|
| + bool incognito,
|
| const std::vector<MediaRouteResponseCallback>& callbacks,
|
| interfaces::MediaRoutePtr media_route,
|
| mojo::String error_text,
|
|
|