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

Unified Diff: third_party/WebKit/LayoutTests/presentation/presentation-start-error.html

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: third_party/WebKit/LayoutTests/presentation/presentation-start-error.html
diff --git a/third_party/WebKit/LayoutTests/presentation/presentation-start-error.html b/third_party/WebKit/LayoutTests/presentation/presentation-start-error.html
index 6cd746ea52f49780f28f1678f5ad744d545f3de2..1f70c78bf365ac00b89993e16f9fb2a7f20642b1 100644
--- a/third_party/WebKit/LayoutTests/presentation/presentation-start-error.html
+++ b/third_party/WebKit/LayoutTests/presentation/presentation-start-error.html
@@ -12,9 +12,9 @@ var button = document.querySelector('button');
async_test(t => {
presentationServiceMock.then(service => {
- service.startSession = urls => {
+ service.startPresentation = urls => {
return Promise.resolve({
- sessionInfo: null,
+ presentation_info: null,
error: {
error_type: 3 /* PresentationErrorType.PREVIOUS_START_IN_PROGRESS */,
message: 'Previous start in progress'

Powered by Google App Engine
This is Rietveld 408576698