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

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

Issue 1507743005: [MediaRouter] Renames CloseRoute() to Terminate() and creates DetachRoute() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot a call to DetachRoute! Created 5 years 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 2209e1ad279a366060faaf4c1a07c2918df0cb3b..b87ceeb4fd0c7c7e4c3d3330bcf1ed4c2a70d336 100644
--- a/chrome/browser/media/router/presentation_service_delegate_impl.h
+++ b/chrome/browser/media/router/presentation_service_delegate_impl.h
@@ -107,12 +107,12 @@ class PresentationServiceDelegateImpl
const std::string& presentation_id,
const content::PresentationSessionStartedCallback& success_cb,
const content::PresentationSessionErrorCallback& error_cb) override;
- void CloseSession(int render_process_id,
- int render_frame_id,
- const std::string& presentation_id) override;
- void TerminateSession(int render_process_id,
- int render_frame_id,
- const std::string& presentation_id) override;
+ void CloseConnection(int render_process_id,
+ int render_frame_id,
+ const std::string& presentation_id) override;
+ void Terminate(int render_process_id,
+ int render_frame_id,
+ const std::string& presentation_id) override;
void ListenForSessionMessages(
int render_process_id,
int render_frame_id,

Powered by Google App Engine
This is Rietveld 408576698