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 219177
Collapse All | Expand All

(-)17ed1c548c54 (-4 / +8 lines)
Lines 144-153 Link Here
144
                    new RemoteScriptExecutor(this),
144
                    new RemoteScriptExecutor(this),
145
                    new PageInspectionHandleImpl(this)
145
                    new PageInspectionHandleImpl(this)
146
                ));
146
                ));
147
        if (extBrowserFactory.getBrowserFamilyId() == BrowserFamilyId.CHROME ||
147
        if ( hasEnhancedMode()){
148
                extBrowserFactory.getBrowserFamilyId() == BrowserFamilyId.CHROMIUM) {
148
            BrowserFamilyId id = extBrowserFactory.getBrowserFamilyId();
149
            WebKitDebuggingTransport transport = new WebKitDebuggingTransport(this);
149
            if (id == BrowserFamilyId.CHROME|| id == BrowserFamilyId.CHROMIUM){
150
            lookups.add(Lookups.fixed(transport, Factory.createWebKitDebugging(transport)));
150
                WebKitDebuggingTransport transport = new WebKitDebuggingTransport(
151
                        this);
152
                lookups.add(Lookups.fixed(transport,
153
                        Factory.createWebKitDebugging(transport)));
154
            }
151
        }
155
        }
152
        return new ProxyLookup(lookups.toArray(new Lookup[lookups.size()]));
156
        return new ProxyLookup(lookups.toArray(new Lookup[lookups.size()]));

Return to bug 219177