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

Side by Side Diff: Source/modules/presentation/Presentation.h

Issue 1225523002: Presentation API: startSession() no longer takes a presentation id. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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
« no previous file with comments | « no previous file | Source/modules/presentation/Presentation.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 Presentation_h 5 #ifndef Presentation_h
6 #define Presentation_h 6 #define Presentation_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "core/events/EventTarget.h" 9 #include "core/events/EventTarget.h"
10 #include "core/frame/DOMWindowProperty.h" 10 #include "core/frame/DOMWindowProperty.h"
(...skipping 26 matching lines...) Expand all
37 virtual ~Presentation(); 37 virtual ~Presentation();
38 38
39 // EventTarget implementation. 39 // EventTarget implementation.
40 virtual const AtomicString& interfaceName() const override; 40 virtual const AtomicString& interfaceName() const override;
41 virtual ExecutionContext* executionContext() const override; 41 virtual ExecutionContext* executionContext() const override;
42 42
43 DECLARE_VIRTUAL_TRACE(); 43 DECLARE_VIRTUAL_TRACE();
44 44
45 PresentationSession* session() const; 45 PresentationSession* session() const;
46 46
47 ScriptPromise startSession(ScriptState*, const String& presentationUrl, cons t String& presentationId); 47 ScriptPromise startSession(ScriptState*, const String& presentationUrl);
48 ScriptPromise joinSession(ScriptState*, const String& presentationUrl, const String& presentationId); 48 ScriptPromise joinSession(ScriptState*, const String& presentationUrl, const String& presentationId);
49 ScriptPromise getAvailability(ScriptState*, const String& presentationUrl); 49 ScriptPromise getAvailability(ScriptState*, const String& presentationUrl);
50 50
51 DEFINE_ATTRIBUTE_EVENT_LISTENER(defaultsessionstart); 51 DEFINE_ATTRIBUTE_EVENT_LISTENER(defaultsessionstart);
52 52
53 // Called when the |defaultsessionstart| event needs to be fired. 53 // Called when the |defaultsessionstart| event needs to be fired.
54 void didStartDefaultSession(PresentationSession*); 54 void didStartDefaultSession(PresentationSession*);
55 55
56 // Called when the |onstatechange| event needs to be fired to the right sess ion. 56 // Called when the |onstatechange| event needs to be fired to the right sess ion.
57 void didChangeSessionState(WebPresentationSessionClient*, WebPresentationSes sionState); 57 void didChangeSessionState(WebPresentationSessionClient*, WebPresentationSes sionState);
(...skipping 13 matching lines...) Expand all
71 // The session object provided to the presentation page. Not supported. 71 // The session object provided to the presentation page. Not supported.
72 Member<PresentationSession> m_session; 72 Member<PresentationSession> m_session;
73 73
74 // The sessions opened for this frame. 74 // The sessions opened for this frame.
75 HeapHashSet<Member<PresentationSession>> m_openSessions; 75 HeapHashSet<Member<PresentationSession>> m_openSessions;
76 }; 76 };
77 77
78 } // namespace blink 78 } // namespace blink
79 79
80 #endif // Presentation_h 80 #endif // Presentation_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/presentation/Presentation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698