blob: 108a7fd674e52d9724bb4c1e37d4ca5beb2e22a0 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Equo
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Guillermo Zunino, Equo - initial implementation
********************************************************************************/
package org.eclipse.swt.browser;
import org.eclipse.swt.widgets.*;
class ChromiumImpl extends Chromium {
@Override
protected long getHandle(Composite control) {
return control.view.id;
}
}