本文整理汇总了Java中org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent类的典型用法代码示例。如果您正苦于以下问题:Java OverlayPanelContent类的具体用法?Java OverlayPanelContent怎么用?Java OverlayPanelContent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OverlayPanelContent类属于org.chromium.chrome.browser.compositor.bottombar包,在下文中一共展示了OverlayPanelContent类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createNewOverlayPanelContent
import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //导入依赖的package包/类
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
OverlayContentDelegate delegate = new OverlayContentDelegate() {
/**
* Track if a navigation/load is the first one for this content.
*/
private boolean mIsInitialLoad = true;
@Override
public void onContentViewCreated(ContentViewCore contentView) {
mContentViewDelegate.setOverlayPanelContentViewCore(contentView);
WebContents distilledWebContents = contentView.getWebContents();
if (distilledWebContents == null) return;
WebContents sourceWebContents = mManagerDelegate.getBasePageWebContents();
if (sourceWebContents == null) return;
DomDistillerTabUtils.distillAndView(sourceWebContents, distilledWebContents);
}
@Override
public void onContentViewDestroyed() {
mContentViewDelegate.releaseOverlayPanelContentViewCore();
mIsInitialLoad = true;
}
@Override
public boolean shouldInterceptNavigation(ExternalNavigationHandler externalNavHandler,
NavigationParams navigationParams) {
// The initial load will be the distilled content; don't try to open a new tab if
// this is the case. All other navigations on distilled pages will come from link
// clicks.
if (mIsInitialLoad) {
mIsInitialLoad = false;
return true;
}
if (!navigationParams.isExternalProtocol) {
mManagerDelegate.createNewTab(navigationParams.url);
return false;
}
return true;
}
};
return new OverlayPanelContent(delegate, new OverlayContentProgressObserver(), mActivity);
}
示例2: createNewOverlayPanelContent
import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //导入依赖的package包/类
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
return new OverlayPanelContent(mManagementDelegate.getOverlayContentDelegate(),
new PanelProgressObserver(), mActivity);
}
示例3: createNewOverlayPanelContent
import org.chromium.chrome.browser.compositor.bottombar.OverlayPanelContent; //导入依赖的package包/类
@Override
public OverlayPanelContent createNewOverlayPanelContent() {
OverlayContentDelegate delegate = new OverlayContentDelegate() {
/**
* Track if a navigation/load is the first one for this content.
*/
private boolean mIsInitialLoad = true;
@Override
public void onContentViewCreated(ContentViewCore contentView) {
mContentViewDelegate.setOverlayPanelContentViewCore(contentView);
WebContents distilledWebContents = contentView.getWebContents();
if (distilledWebContents == null) {
closePanel(StateChangeReason.UNKNOWN, false);
return;
}
WebContents sourceWebContents = mManagerDelegate.getBasePageWebContents();
if (sourceWebContents == null) {
closePanel(StateChangeReason.UNKNOWN, false);
return;
}
DomDistillerTabUtils.distillAndView(sourceWebContents, distilledWebContents);
}
@Override
public void onContentViewDestroyed() {
mContentViewDelegate.releaseOverlayPanelContentViewCore();
mIsInitialLoad = true;
}
@Override
public boolean shouldInterceptNavigation(ExternalNavigationHandler externalNavHandler,
NavigationParams navigationParams) {
// The initial load will be the distilled content; don't try to open a new tab if
// this is the case. All other navigations on distilled pages will come from link
// clicks.
if (mIsInitialLoad) {
mIsInitialLoad = false;
return true;
}
if (!navigationParams.isExternalProtocol) {
mManagerDelegate.createNewTab(navigationParams.url);
return false;
}
return true;
}
};
return new OverlayPanelContent(delegate, new OverlayContentProgressObserver(), mActivity);
}