@@ -254,10 +254,12 @@ public boolean onOptionsItemSelected(@NonNull MenuItem item) {
254
254
255
255
@ Override
256
256
public void onRedoEnabled () {
257
+ // Currently unsupported
257
258
}
258
259
259
260
@ Override
260
261
public void onUndoEnabled () {
262
+ // Currently unsupported
261
263
}
262
264
263
265
@ Override
@@ -272,6 +274,7 @@ public void onRedo() {
272
274
273
275
@ Override
274
276
public void setTitle (CharSequence title ) {
277
+ // Unused, no-op retained for the shared interface with Gutenberg
275
278
}
276
279
277
280
@ Override
@@ -285,6 +288,7 @@ public void setContent(CharSequence text) {
285
288
286
289
@ Override
287
290
public void updateContent (@ Nullable CharSequence text ) {
291
+ // Unused, no-op retained for the shared interface with Gutenberg
288
292
}
289
293
290
294
public void onToggleHtmlMode () {
@@ -423,28 +427,34 @@ public void appendMediaFiles(Map<String, MediaFile> mediaList) {
423
427
424
428
@ Override
425
429
public void appendGallery (MediaGallery mediaGallery ) {
430
+ // Unused, no-op retained for the shared interface with Gutenberg
426
431
}
427
432
428
433
@ Override
429
434
public void setUrlForVideoPressId (final String videoId , final String videoUrl , final String posterUrl ) {
435
+ // Unused, no-op retained for the shared interface with Gutenberg
430
436
}
431
437
432
438
@ Override
433
439
public boolean isUploadingMedia () {
440
+ // Unused, no-op retained for the shared interface with Gutenberg
434
441
return false ;
435
442
}
436
443
437
444
@ Override
438
445
public boolean hasFailedMediaUploads () {
446
+ // Unused, no-op retained for the shared interface with Gutenberg
439
447
return false ;
440
448
}
441
449
442
450
@ Override
443
451
public void removeAllFailedMediaUploads () {
452
+ // Unused, no-op retained for the shared interface with Gutenberg
444
453
}
445
454
446
455
@ Override
447
456
public void removeMedia (String mediaId ) {
457
+ // Unused, no-op retained for the shared interface with Gutenberg
448
458
}
449
459
450
460
@ Override
@@ -457,63 +467,79 @@ public void onDestroy() {
457
467
}
458
468
459
469
@ Override public void mediaSelectionCancelled () {
470
+ // Unused, no-op retained for the shared interface with Gutenberg
460
471
}
461
472
462
473
@ Override
463
474
public void onMediaUploadReattached (String localMediaId , float currentProgress ) {
475
+ // Unused, no-op retained for the shared interface with Gutenberg
464
476
}
465
477
466
478
@ Override
467
479
public void onMediaUploadRetry (String localMediaId , MediaType mediaType ) {
480
+ // Unused, no-op retained for the shared interface with Gutenberg
468
481
}
469
482
470
483
@ Override
471
484
public void onMediaUploadSucceeded (final String localMediaId , final MediaFile mediaFile ) {
485
+ // Unused, no-op retained for the shared interface with Gutenberg
472
486
}
473
487
474
488
@ Override
475
489
public void onMediaUploadProgress (final String localMediaId , final float progress ) {
490
+ // Unused, no-op retained for the shared interface with Gutenberg
476
491
}
477
492
478
493
@ Override
479
494
public void onMediaUploadFailed (final String localMediaId ) {
495
+ // Unused, no-op retained for the shared interface with Gutenberg
480
496
}
481
497
482
498
@ Override
483
499
public void onMediaUploadPaused (final String localMediaId ) {
500
+ // Unused, no-op retained for the shared interface with Gutenberg
484
501
}
485
502
486
503
@ Override
487
504
public void onGalleryMediaUploadSucceeded (final long galleryId , long remoteMediaId , int remaining ) {
505
+ // Unused, no-op retained for the shared interface with Gutenberg
488
506
}
489
507
490
508
@ Override
491
509
public void onEditorThemeUpdated (Bundle editorTheme ) {
510
+ // Unused, no-op retained for the shared interface with Gutenberg
492
511
}
493
512
494
513
@ Override
495
514
public void showNotice (String message ) {
515
+ // Unused, no-op retained for the shared interface with Gutenberg
496
516
}
497
517
498
518
@ Override
499
519
public void showEditorHelp () {
520
+ // Unused, no-op retained for the shared interface with Gutenberg
500
521
}
501
522
502
523
@ Override public void onUndoPressed () {
524
+ // Currently unsupported
503
525
}
504
526
505
527
@ Override public void onRedoPressed () {
528
+ // Currently unsupported
506
529
}
507
530
508
531
@ Override
509
532
public void onGutenbergDialogPositiveClicked (@ NonNull String instanceTag , int mediaId ) {
533
+ // Unused, no-op retained for the shared interface with Gutenberg
510
534
}
511
535
512
536
@ Override
513
537
public void onGutenbergDialogNegativeClicked (@ NonNull String instanceTag ) {
538
+ // Unused, no-op retained for the shared interface with Gutenberg
514
539
}
515
540
516
541
@ Override
517
542
public void onConnectionStatusChange (boolean isConnected ) {
543
+ // Unused, no-op retained for the shared interface with Gutenberg
518
544
}
519
545
}
0 commit comments