We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11e6f7f commit 0c60b07Copy full SHA for 0c60b07
WordPressEditor/src/main/java/org/wordpress/android/editor/EditorFragmentAbstract.java
@@ -49,11 +49,14 @@ public void setLocalDraft(boolean isLocalDraft) {
49
}
50
51
/**
52
- * Callbacks to communicate with the parent Activity
+ * Callbacks used to communicate with the parent Activity
53
*/
54
public interface EditorFragmentListener {
55
public void onEditorFragmentInitialized();
56
public void onSettingsClicked();
57
public void onAddMediaButtonClicked();
58
+ // TODO: remove saveMediaFile, it's currently needed for the legacy editor - we should have something like
59
+ // "EditorFragmentAbstract.getFeaturedImage()" returning the remote id
60
+ public void saveMediaFile(MediaFile mediaFile);
61
62
0 commit comments