This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 203899
Collapse All | Expand All

(-)a/extbrowser/src/org/netbeans/modules/extbrowser/ChromeBrowser.java (-1 / +1 lines)
Lines 165-171 Link Here
165
            }
165
            }
166
         // Mac
166
         // Mac
167
        } else if (Utilities.isMac()) {
167
        } else if (Utilities.isMac()) {
168
            params += "-a chrome {" + ExtWebBrowser.UnixBrowserFormat.TAG_URL + "}"; // NOI18N
168
            params += "-b com.google.chrome {" + ExtWebBrowser.UnixBrowserFormat.TAG_URL + "}"; // NOI18N
169
            retValue = new NbProcessDescriptor ("/usr/bin/open", params, // NOI18N
169
            retValue = new NbProcessDescriptor ("/usr/bin/open", params, // NOI18N
170
                    ExtWebBrowser.UnixBrowserFormat.getHint());
170
                    ExtWebBrowser.UnixBrowserFormat.getHint());
171
            return retValue;
171
            return retValue;
(-)a/web.plugins/src/org/netbeans/modules/web/plugins/chrome/ChromeManagerAccessor.java (-1 / +1 lines)
Lines 86-92 Link Here
86
        
86
        
87
        private static final String PLUGIN_NAME = "NetBeans IDE Support Plugin";// NOI18N
87
        private static final String PLUGIN_NAME = "NetBeans IDE Support Plugin";// NOI18N
88
        
88
        
89
        private static final String CURRENT_VERSION = "0.3.2";                  // NOI18N
89
        private static final String CURRENT_VERSION = "0.3.4";                  // NOI18N
90
        
90
        
91
        private static final String EXTENSION_PATH = "modules/ext/netbeans-ros-chrome-plugin.crx"; // NOI18N
91
        private static final String EXTENSION_PATH = "modules/ext/netbeans-ros-chrome-plugin.crx"; // NOI18N
92
92

Return to bug 203899