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

Side by Side Diff: content/renderer/presentation/presentation_dispatcher.h

Issue 2552343009: [Presentation API] Adds DOMString[] constructor to PresentationRequest. (Closed)
Patch Set: rebase Created 3 years, 11 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_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_ 5 #ifndef CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_
6 #define CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_ 6 #define CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 size_t length) override; 87 size_t length) override;
88 void sendBlobData(const blink::WebURL& presentationUrl, 88 void sendBlobData(const blink::WebURL& presentationUrl,
89 const blink::WebString& presentationId, 89 const blink::WebString& presentationId,
90 const uint8_t* data, 90 const uint8_t* data,
91 size_t length) override; 91 size_t length) override;
92 void closeSession(const blink::WebURL& presentationUrl, 92 void closeSession(const blink::WebURL& presentationUrl,
93 const blink::WebString& presentationId) override; 93 const blink::WebString& presentationId) override;
94 void terminateSession(const blink::WebURL& presentationUrl, 94 void terminateSession(const blink::WebURL& presentationUrl,
95 const blink::WebString& presentationId) override; 95 const blink::WebString& presentationId) override;
96 void getAvailability( 96 void getAvailability(
97 const blink::WebURL& availabilityUrl, 97 const blink::WebVector<blink::WebURL>& availabilityUrl,
98 std::unique_ptr<blink::WebPresentationAvailabilityCallbacks> callbacks) 98 std::unique_ptr<blink::WebPresentationAvailabilityCallbacks> callbacks)
99 override; 99 override;
100 void startListening(blink::WebPresentationAvailabilityObserver*) override; 100 void startListening(blink::WebPresentationAvailabilityObserver*) override;
101 void stopListening(blink::WebPresentationAvailabilityObserver*) override; 101 void stopListening(blink::WebPresentationAvailabilityObserver*) override;
102 void setDefaultPresentationUrls( 102 void setDefaultPresentationUrls(
103 const blink::WebVector<blink::WebURL>& presentationUrls) override; 103 const blink::WebVector<blink::WebURL>& presentationUrls) override;
104 104
105 // RenderFrameObserver implementation. 105 // RenderFrameObserver implementation.
106 void DidCommitProvisionalLoad( 106 void DidCommitProvisionalLoad(
107 bool is_new_navigation, 107 bool is_new_navigation,
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 // Updates the listening state of availability for |status| and notifies the 182 // Updates the listening state of availability for |status| and notifies the
183 // client. 183 // client.
184 void UpdateListeningState(AvailabilityStatus* status); 184 void UpdateListeningState(AvailabilityStatus* status);
185 185
186 DISALLOW_COPY_AND_ASSIGN(PresentationDispatcher); 186 DISALLOW_COPY_AND_ASSIGN(PresentationDispatcher);
187 }; 187 };
188 188
189 } // namespace content 189 } // namespace content
190 190
191 #endif // CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_ 191 #endif // CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698