当前位置: 首页>>代码示例>>Java>>正文


Java TabReparentingParams.finalizeTabReparenting方法代码示例

本文整理汇总了Java中org.chromium.chrome.browser.tabmodel.TabReparentingParams.finalizeTabReparenting方法的典型用法代码示例。如果您正苦于以下问题:Java TabReparentingParams.finalizeTabReparenting方法的具体用法?Java TabReparentingParams.finalizeTabReparenting怎么用?Java TabReparentingParams.finalizeTabReparenting使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.chromium.chrome.browser.tabmodel.TabReparentingParams的用法示例。


在下文中一共展示了TabReparentingParams.finalizeTabReparenting方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: attachAndFinishReparenting

import org.chromium.chrome.browser.tabmodel.TabReparentingParams; //导入方法依赖的package包/类
/**
 * Finishes the tab reparenting process. Attaches the tab to the new activity, and updates the
 * tab and related objects to reference the new activity. This updates many delegates inside the
 * tab and {@link ContentViewCore} both on java and native sides.
 *
 * @param activity The new activity this tab should be associated with.
 * @param tabDelegateFactory The new delegate factory this tab should be using.
 * @Param reparentingParams The TabReparentingParams associated with this reparenting process.
 */
public void attachAndFinishReparenting(ChromeActivity activity,
        TabDelegateFactory tabDelegateFactory, TabReparentingParams reparentingParams) {
    // TODO(yusufo): Share these calls with the construction related calls.
    // crbug.com/590281

    updateWindowAndroid(activity.getWindowAndroid());

    // Update for the controllers that need the Compositor from the new Activity.
    attachTabContentManager(activity.getTabContentManager());
    mFullscreenManager = activity.getFullscreenManager();
    activity.getCompositorViewHolder().prepareForTabReparenting();

    // Update the delegate factory, then recreate and propagate all delegates.
    mDelegateFactory = tabDelegateFactory;
    mWebContentsDelegate = mDelegateFactory.createWebContentsDelegate(this);
    nativeUpdateDelegates(mNativeTabAndroid,
            mWebContentsDelegate, mDelegateFactory.createContextMenuPopulator(this));
    mBrowserControlsVisibilityDelegate =
            mDelegateFactory.createBrowserControlsVisibilityDelegate(this);
    setInterceptNavigationDelegate(mDelegateFactory.createInterceptNavigationDelegate(this));
    getAppBannerManager().setIsEnabledForTab(mDelegateFactory.canShowAppBanners(this));

    reparentingParams.finalizeTabReparenting();
    mIsDetachedForReparenting = false;

    // Reload the NativePage (if any), since the old NativePage has a reference to the old
    // activity.
    maybeShowNativePage(getUrl(), true);

    mIsTabStateDirty = true;

    for (TabObserver observer : mObservers) {
        observer.onReparentingFinished(this);
    }
}
 
开发者ID:rkshuai,项目名称:chromium-for-android-56-debug-video,代码行数:45,代码来源:Tab.java

示例2: attachAndFinishReparenting

import org.chromium.chrome.browser.tabmodel.TabReparentingParams; //导入方法依赖的package包/类
/**
 * Finishes the tab reparenting process. Attaches the tab to the new activity, and updates the
 * tab and related objects to reference the new activity. This updates many delegates inside the
 * tab and {@link ContentViewCore} both on java and native sides.
 *
 * @param activity The new activity this tab should be associated with.
 * @param tabDelegateFactory The new delegate factory this tab should be using.
 * @Param reparentingParams The TabReparentingParams associated with this reparenting process.
 */
public void attachAndFinishReparenting(ChromeActivity activity,
        TabDelegateFactory tabDelegateFactory, TabReparentingParams reparentingParams) {
    // TODO(yusufo): Share these calls with the construction related calls.
    // crbug.com/590281

    updateWindowAndroid(activity.getWindowAndroid());

    // Update for the controllers that need the Compositor from the new Activity.
    attachTabContentManager(activity.getTabContentManager());
    mFullscreenManager = activity.getFullscreenManager();
    activity.getCompositorViewHolder().prepareForTabReparenting();
    // Update the delegate factory, then recreate and propagate all delegates.
    mDelegateFactory = tabDelegateFactory;
    mWebContentsDelegate = mDelegateFactory.createWebContentsDelegate(this);
    nativeUpdateDelegates(mNativeTabAndroid,
            mWebContentsDelegate, mDelegateFactory.createContextMenuPopulator(this));
    mBrowserControlsVisibilityDelegate =
            mDelegateFactory.createBrowserControlsVisibilityDelegate(this);
    setInterceptNavigationDelegate(mDelegateFactory.createInterceptNavigationDelegate(this));
    getAppBannerManager().setIsEnabledForTab(mDelegateFactory.canShowAppBanners(this));

    reparentingParams.finalizeTabReparenting();
    mIsDetached = false;
    nativeAttachDetachedTab(mNativeTabAndroid);

    // Reload the NativePage (if any), since the old NativePage has a reference to the old
    // activity.
    maybeShowNativePage(getUrl(), true);

    mIsTabStateDirty = true;

    for (TabObserver observer : mObservers) {
        observer.onReparentingFinished(this);
    }
}
 
开发者ID:mogoweb,项目名称:365browser,代码行数:45,代码来源:Tab.java


注:本文中的org.chromium.chrome.browser.tabmodel.TabReparentingParams.finalizeTabReparenting方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。