Skip to content

Commit d5a941c

Browse files
authored
Make JX Browser the fallback and remove settings option (#7232)
This removes the option to select JCEF or JX Browser in settings for simplicity. We will instead check if JCEF is available first, and if not, download and use JX Browser. Embedded browser failures in IJ (where JCEF is included by default) were very low, so I think it's unlikely users will benefit from having a choice here. I still need to build this to check whether this is detecting the presence of JCEF accurately.
1 parent bc846e4 commit d5a941c

7 files changed

+21
-34
lines changed

flutter-idea/src/io/flutter/FlutterUtils.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -633,11 +633,10 @@ public static EmbeddedBrowser embeddedBrowser(Project project) {
633633
return null;
634634
}
635635

636-
return FlutterSettings.getInstance().isEnableJcefBrowser() ? EmbeddedJcefBrowser.getInstance(project) : EmbeddedJxBrowser.getInstance(project);
636+
return EmbeddedJcefBrowser.isUsable() ? EmbeddedJcefBrowser.getInstance(project) : EmbeddedJxBrowser.getInstance(project);
637637
}
638638

639639
public static boolean embeddedBrowserAvailable(JxBrowserStatus status) {
640-
return status.equals(JxBrowserStatus.INSTALLED) || status.equals(JxBrowserStatus.INSTALLATION_SKIPPED) && FlutterSettings.getInstance()
641-
.isEnableJcefBrowser();
640+
return status.equals(JxBrowserStatus.INSTALLED) || status.equals(JxBrowserStatus.INSTALLATION_SKIPPED) && EmbeddedJcefBrowser.isUsable();
642641
}
643642
}

flutter-idea/src/io/flutter/sdk/FlutterSettingsConfigurable.form

+1-10
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
</grid>
245245
</children>
246246
</grid>
247-
<grid id="23e52" layout-manager="GridLayoutManager" row-count="5" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
247+
<grid id="23e52" layout-manager="GridLayoutManager" row-count="4" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
248248
<margin top="0" left="0" bottom="0" right="0"/>
249249
<constraints>
250250
<grid row="5" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
@@ -287,15 +287,6 @@
287287
<toolTipText resource-bundle="io/flutter/FlutterBundle" key="settings.show.all.configs.tooltip"/>
288288
</properties>
289289
</component>
290-
<component id="909bb" class="javax.swing.JCheckBox" binding="myEnableJcefBrowserCheckBox">
291-
<constraints>
292-
<grid row="4" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
293-
</constraints>
294-
<properties>
295-
<text resource-bundle="io/flutter/FlutterBundle" key="settings.jcef.browser"/>
296-
<toolTipText resource-bundle="io/flutter/FlutterBundle" key="settings.jcef.browser.tooltip"/>
297-
</properties>
298-
</component>
299290
</children>
300291
</grid>
301292
<grid id="3bf2f" layout-manager="GridLayoutManager" row-count="1" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">

flutter-idea/src/io/flutter/sdk/FlutterSettingsConfigurable.java

-8
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ public class FlutterSettingsConfigurable implements SearchableConfigurable {
7878

7979
private JCheckBox myShowAllRunConfigurationsInContextCheckBox;
8080

81-
private JCheckBox myEnableJcefBrowserCheckBox;
82-
8381
private JCheckBox myShowBuildMethodGuides;
8482
private JCheckBox myShowClosingLabels;
8583
private FixedSizeButton myCopyButton;
@@ -267,10 +265,6 @@ public boolean isModified() {
267265
return true;
268266
}
269267

270-
if (settings.isEnableJcefBrowser() != myEnableJcefBrowserCheckBox.isSelected()) {
271-
return true;
272-
}
273-
274268
return false;
275269
}
276270

@@ -329,7 +323,6 @@ public void apply() throws ConfigurationException {
329323
settings.setAllowTestsInSourcesRoot(myAllowTestsInSourcesRoot.isSelected());
330324
settings.setShowAllRunConfigurationsInContext(myShowAllRunConfigurationsInContextCheckBox.isSelected());
331325
settings.setFontPackages(myFontPackagesTextArea.getText());
332-
settings.setEnableJcefBrowser(myEnableJcefBrowserCheckBox.isSelected());
333326

334327
reset(); // because we rely on remembering initial state
335328
checkFontPackages(settings.getFontPackages(), oldFontPackages);
@@ -401,7 +394,6 @@ public void reset() {
401394
myIncludeAllStackTraces.setEnabled(myShowStructuredErrors.isSelected());
402395

403396
myShowAllRunConfigurationsInContextCheckBox.setSelected(settings.showAllRunConfigurationsInContext());
404-
myEnableJcefBrowserCheckBox.setSelected(settings.isEnableJcefBrowser());
405397
myFontPackagesTextArea.setText(settings.getFontPackages());
406398
}
407399

flutter-idea/src/io/flutter/settings/FlutterSettings.java

-11
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class FlutterSettings {
3030
private static final String enableHotUiKey = "io.flutter.editor.enableHotUi";
3131
private static final String enableBazelHotRestartKey = "io.flutter.editor.enableBazelHotRestart";
3232
private static final String showBazelHotRestartWarningKey = "io.flutter.showBazelHotRestartWarning";
33-
private static final String enableJcefBrowserKey = "io.flutter.enableJcefBrowser";
3433
private static final String fontPackagesKey = "io.flutter.fontPackages";
3534
private static final String allowTestsInSourcesRootKey = "io.flutter.allowTestsInSources";
3635
private static final String showBazelIosRunNotificationKey = "io.flutter.hideBazelIosRunNotification";
@@ -265,16 +264,6 @@ public void setShowAllRunConfigurationsInContext(boolean value) {
265264
fireEvent();
266265
}
267266

268-
public boolean isEnableJcefBrowser() {
269-
return getPropertiesComponent().getBoolean(enableJcefBrowserKey, false);
270-
}
271-
272-
public void setEnableJcefBrowser(boolean value) {
273-
getPropertiesComponent().setValue(enableJcefBrowserKey, value, false);
274-
275-
fireEvent();
276-
}
277-
278267
public boolean isVerboseLogging() {
279268
return getPropertiesComponent().getBoolean(verboseLoggingKey, false);
280269
}

flutter-idea/src/io/flutter/utils/JxBrowserUtils.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import com.intellij.openapi.util.SystemInfo;
99
import io.flutter.settings.FlutterSettings;
10+
import io.flutter.view.EmbeddedJcefBrowser;
1011
import org.jetbrains.annotations.NotNull;
1112
// import com.intellij.util.system.CpuArch;
1213

@@ -88,6 +89,6 @@ public boolean licenseIsSet() {
8889

8990

9091
public boolean skipInstallation() {
91-
return FlutterSettings.getInstance().isEnableJcefBrowser();
92+
return EmbeddedJcefBrowser.isUsable();
9293
}
9394
}

flutter-idea/src/io/flutter/view/EmbeddedJcefBrowser.java

+15
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public JComponent getTabComponent(ContentManager contentManager) {
4242

4343
public class EmbeddedJcefBrowser extends EmbeddedBrowser {
4444
private static final Logger LOG = Logger.getInstance(JxBrowserManager.class);
45+
private static Boolean jcefIsUsable = null;
4546

4647
public EmbeddedJcefBrowser(Project project) {
4748
super(project);
@@ -52,6 +53,20 @@ public static EmbeddedJcefBrowser getInstance(Project project) {
5253
return ServiceManager.getService(project, EmbeddedJcefBrowser.class);
5354
}
5455

56+
public static boolean isUsable() {
57+
if (jcefIsUsable != null) return jcefIsUsable;
58+
59+
try {
60+
new JBCefBrowser();
61+
}
62+
catch (IllegalStateException e) {
63+
jcefIsUsable = false;
64+
return false;
65+
}
66+
jcefIsUsable = true;
67+
return true;
68+
}
69+
5570
public Logger logger() {
5671
return LOG;
5772
}

flutter-idea/src/io/flutter/view/FlutterView.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ private void debugActiveHelper(FlutterApp app, @Nullable InspectorService inspec
768768
}
769769

770770
private void displayEmbeddedBrowser(FlutterApp app, InspectorService inspectorService, ToolWindow toolWindow, DevToolsIdeFeature ideFeature) {
771-
if (FlutterSettings.getInstance().isEnableJcefBrowser()) {
771+
if (EmbeddedJcefBrowser.isUsable()) {
772772
presentDevTools(app, inspectorService, toolWindow, true, ideFeature);
773773
} else {
774774
displayEmbeddedBrowserIfJxBrowser(app, inspectorService, toolWindow, ideFeature);

0 commit comments

Comments
 (0)