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

Side by Side Diff: content/browser/presentation/presentation_service_impl.h

Issue 1208083004: Presentation API: ignore presentation id passed to startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_
6 #define CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_ 6 #define CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 void SetDefaultPresentationURL( 171 void SetDefaultPresentationURL(
172 const mojo::String& presentation_url, 172 const mojo::String& presentation_url,
173 const mojo::String& presentation_id) override; 173 const mojo::String& presentation_id) override;
174 void SetClient(presentation::PresentationServiceClientPtr client) override; 174 void SetClient(presentation::PresentationServiceClientPtr client) override;
175 void ListenForScreenAvailability() override; 175 void ListenForScreenAvailability() override;
176 void StopListeningForScreenAvailability() override; 176 void StopListeningForScreenAvailability() override;
177 void ListenForDefaultSessionStart( 177 void ListenForDefaultSessionStart(
178 const DefaultSessionMojoCallback& callback) override; 178 const DefaultSessionMojoCallback& callback) override;
179 void StartSession( 179 void StartSession(
180 const mojo::String& presentation_url, 180 const mojo::String& presentation_url,
181 const mojo::String& presentation_id,
182 const NewSessionMojoCallback& callback) override; 181 const NewSessionMojoCallback& callback) override;
183 void JoinSession( 182 void JoinSession(
184 const mojo::String& presentation_url, 183 const mojo::String& presentation_url,
185 const mojo::String& presentation_id, 184 const mojo::String& presentation_id,
186 const NewSessionMojoCallback& callback) override; 185 const NewSessionMojoCallback& callback) override;
187 void SendSessionMessage( 186 void SendSessionMessage(
188 presentation::SessionMessagePtr session_message, 187 presentation::SessionMessagePtr session_message,
189 const SendMessageMojoCallback& callback) override; 188 const SendMessageMojoCallback& callback) override;
190 void CloseSession( 189 void CloseSession(
191 const mojo::String& presentation_url, 190 const mojo::String& presentation_url,
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 300
302 // NOTE: Weak pointers must be invalidated before all other member variables. 301 // NOTE: Weak pointers must be invalidated before all other member variables.
303 base::WeakPtrFactory<PresentationServiceImpl> weak_factory_; 302 base::WeakPtrFactory<PresentationServiceImpl> weak_factory_;
304 303
305 DISALLOW_COPY_AND_ASSIGN(PresentationServiceImpl); 304 DISALLOW_COPY_AND_ASSIGN(PresentationServiceImpl);
306 }; 305 };
307 306
308 } // namespace content 307 } // namespace content
309 308
310 #endif // CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_ 309 #endif // CONTENT_BROWSER_PRESENTATION_PRESENTATION_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698