Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1143)

Unified Diff: chrome/browser/media/router/presentation_service_delegate_impl.h

Issue 2737413003: [Presentation API] Remove references to presentation sessions. (Closed)
Patch Set: Update PresentationServiceDelegateImpl unittest Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/router/presentation_service_delegate_impl.h
diff --git a/chrome/browser/media/router/presentation_service_delegate_impl.h b/chrome/browser/media/router/presentation_service_delegate_impl.h
index a3662e10a0f186b5d82b7c6b8c4a0ad73edb284e..c9e92fc0e0968f7889662d3dfa70224ed5d6acd7 100644
--- a/chrome/browser/media/router/presentation_service_delegate_impl.h
+++ b/chrome/browser/media/router/presentation_service_delegate_impl.h
@@ -27,8 +27,8 @@
namespace content {
class PresentationScreenAvailabilityListener;
class WebContents;
-struct PresentationSessionInfo;
struct PresentationConnectionMessage;
+struct PresentationInfo;
} // namespace content
namespace url {
@@ -45,8 +45,8 @@ class RouteRequestResult;
// WebContents with the Chrome Media Router. It uses the Media Router to handle
// presentation API calls forwarded from PresentationServiceImpl. In addition,
// it also provides default presentation URL that is required for creating
-// browser-initiated sessions. It is scoped to the lifetime of a WebContents,
-// and is managed by the associated WebContents.
+// browser-initiated presentations. It is scoped to the lifetime of a
+// WebContents, and is managed by the associated WebContents.
class PresentationServiceDelegateImpl
: public content::WebContentsUserData<PresentationServiceDelegateImpl>,
public content::ControllerPresentationServiceDelegate {
@@ -95,20 +95,20 @@ class PresentationServiceDelegateImpl
int render_process_id,
int render_frame_id,
const std::vector<GURL>& default_presentation_urls,
- const content::PresentationSessionStartedCallback& callback) override;
- void StartSession(
+ const content::PresentationConnectionCallback& callback) override;
+ void StartPresentation(
int render_process_id,
int render_frame_id,
const std::vector<GURL>& presentation_urls,
- const content::PresentationSessionStartedCallback& success_cb,
- const content::PresentationSessionErrorCallback& error_cb) override;
- void JoinSession(
+ const content::PresentationConnectionCallback& success_cb,
+ const content::PresentationConnectionErrorCallback& error_cb) override;
+ void ReconnectPresentation(
int render_process_id,
int render_frame_id,
const std::vector<GURL>& presentation_urls,
const std::string& presentation_id,
- const content::PresentationSessionStartedCallback& success_cb,
- const content::PresentationSessionErrorCallback& error_cb) override;
+ const content::PresentationConnectionCallback& success_cb,
+ const content::PresentationConnectionErrorCallback& error_cb) override;
void CloseConnection(int render_process_id,
int render_frame_id,
const std::string& presentation_id) override;
@@ -118,24 +118,24 @@ class PresentationServiceDelegateImpl
void ListenForConnectionMessages(
int render_process_id,
int render_frame_id,
- const content::PresentationSessionInfo& session,
+ const content::PresentationInfo& presentation_info,
const content::PresentationConnectionMessageCallback& message_cb)
override;
void SendMessage(int render_process_id,
int render_frame_id,
- const content::PresentationSessionInfo& session,
+ const content::PresentationInfo& presentation_info,
content::PresentationConnectionMessage message,
const SendMessageCallback& send_message_cb) override;
void ListenForConnectionStateChange(
int render_process_id,
int render_frame_id,
- const content::PresentationSessionInfo& connection,
+ const content::PresentationInfo& connection,
const content::PresentationConnectionStateChangedCallback&
state_changed_cb) override;
void ConnectToPresentation(
int render_process_id,
int render_frame_id,
- const content::PresentationSessionInfo& session,
+ const content::PresentationInfo& presentation_info,
content::PresentationConnectionPtr controller_connection_ptr,
content::PresentationConnectionRequest receiver_connection_request)
override;
@@ -200,15 +200,15 @@ class PresentationServiceDelegateImpl
int render_frame_id,
const GURL& presentation_url,
const std::string& presentation_id,
- const content::PresentationSessionStartedCallback& success_cb,
- const content::PresentationSessionErrorCallback& error_cb,
+ const content::PresentationConnectionCallback& success_cb,
+ const content::PresentationConnectionErrorCallback& error_cb,
const RouteRequestResult& result);
- void OnStartSessionSucceeded(
+ void OnStartPresentationSucceeded(
int render_process_id,
int render_frame_id,
- const content::PresentationSessionStartedCallback& success_cb,
- const content::PresentationSessionInfo& new_session,
+ const content::PresentationConnectionCallback& success_cb,
+ const content::PresentationInfo& new_presentation_info,
const MediaRoute& route);
#if !defined(OS_ANDROID)

Powered by Google App Engine
This is Rietveld 408576698