| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.tab; | 5 package org.chromium.chrome.browser.tab; |
| 6 | 6 |
| 7 import android.annotation.SuppressLint; | 7 import android.annotation.SuppressLint; |
| 8 import android.app.Activity; | 8 import android.app.Activity; |
| 9 import android.app.Application; | 9 import android.app.Application; |
| 10 import android.content.Context; | 10 import android.content.Context; |
| (...skipping 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2314 // (zero) to the renderer process, although the new size will be set soo
n. | 2314 // (zero) to the renderer process, although the new size will be set soo
n. |
| 2315 // However, this size fluttering may confuse Blink and rendered result c
an be broken | 2315 // However, this size fluttering may confuse Blink and rendered result c
an be broken |
| 2316 // (see http://crbug.com/340987). | 2316 // (see http://crbug.com/340987). |
| 2317 newContentViewCore.onSizeChanged(originalWidth, originalHeight, 0, 0); | 2317 newContentViewCore.onSizeChanged(originalWidth, originalHeight, 0, 0); |
| 2318 if (!bounds.isEmpty()) { | 2318 if (!bounds.isEmpty()) { |
| 2319 newContentViewCore.onPhysicalBackingSizeChanged(bounds.right, bounds
.bottom); | 2319 newContentViewCore.onPhysicalBackingSizeChanged(bounds.right, bounds
.bottom); |
| 2320 } | 2320 } |
| 2321 newContentViewCore.onShow(); | 2321 newContentViewCore.onShow(); |
| 2322 setContentViewCore(newContentViewCore); | 2322 setContentViewCore(newContentViewCore); |
| 2323 | 2323 |
| 2324 mContentViewCore.attachImeAdapter(); |
| 2325 |
| 2324 // If the URL has already committed (e.g. prerendering), tell process ma
nagement logic that | 2326 // If the URL has already committed (e.g. prerendering), tell process ma
nagement logic that |
| 2325 // it can rely on the process visibility signal for binding management. | 2327 // it can rely on the process visibility signal for binding management. |
| 2326 // TODO: Call ChildProcessLauncher#determinedVisibility() at a more intu
itive time. | 2328 // TODO: Call ChildProcessLauncher#determinedVisibility() at a more intu
itive time. |
| 2327 // See crbug.com/537671 | 2329 // See crbug.com/537671 |
| 2328 if (!mContentViewCore.getWebContents().getLastCommittedUrl().equals(""))
{ | 2330 if (!mContentViewCore.getWebContents().getLastCommittedUrl().equals(""))
{ |
| 2329 ChildProcessLauncher.determinedVisibility(mContentViewCore.getCurren
tRenderProcessId()); | 2331 ChildProcessLauncher.determinedVisibility(mContentViewCore.getCurren
tRenderProcessId()); |
| 2330 } | 2332 } |
| 2331 | 2333 |
| 2332 destroyNativePageInternal(previousNativePage); | 2334 destroyNativePageInternal(previousNativePage); |
| 2333 for (TabObserver observer : mObservers) { | 2335 for (TabObserver observer : mObservers) { |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3086 private native boolean nativeIsOfflinePage(long nativeTabAndroid); | 3088 private native boolean nativeIsOfflinePage(long nativeTabAndroid); |
| 3087 private native OfflinePageItem nativeGetOfflinePage(long nativeTabAndroid); | 3089 private native OfflinePageItem nativeGetOfflinePage(long nativeTabAndroid); |
| 3088 private native void nativeSetInterceptNavigationDelegate(long nativeTabAndro
id, | 3090 private native void nativeSetInterceptNavigationDelegate(long nativeTabAndro
id, |
| 3089 InterceptNavigationDelegate delegate); | 3091 InterceptNavigationDelegate delegate); |
| 3090 private native void nativeAttachToTabContentManager(long nativeTabAndroid, | 3092 private native void nativeAttachToTabContentManager(long nativeTabAndroid, |
| 3091 TabContentManager tabContentManager); | 3093 TabContentManager tabContentManager); |
| 3092 private native boolean nativeHasPrerenderedUrl(long nativeTabAndroid, String
url); | 3094 private native boolean nativeHasPrerenderedUrl(long nativeTabAndroid, String
url); |
| 3093 private native void nativeSetWebappManifestScope(long nativeTabAndroid, Stri
ng scope); | 3095 private native void nativeSetWebappManifestScope(long nativeTabAndroid, Stri
ng scope); |
| 3094 private native void nativeEnableEmbeddedMediaExperience(long nativeTabAndroi
d, boolean enabled); | 3096 private native void nativeEnableEmbeddedMediaExperience(long nativeTabAndroi
d, boolean enabled); |
| 3095 } | 3097 } |
| OLD | NEW |