HomeSort by relevance Sort by last modified time
    Searched defs:contentViewCore (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/input/
SelectPopupOtherContentViewTest.java 12 import org.chromium.content.browser.ContentViewCore;
38 ContentViewCore contentViewCore = getActivity().getActiveContentViewCore();
39 return contentViewCore.getSelectPopupForTest() != null;
61 final ContentViewCore viewCore = getActivity().getActiveContentViewCore();
75 ContentViewCore contentViewCore = new ContentViewCore(getActivity());
76 ContentView cv = ContentView.newInstance(getActivity(), contentViewCore);
77 contentViewCore.initialize(cv, cv, nativeWebContents, windowAndroid)
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
TestsJavaScriptEvalTest.java 35 final ContentViewCore contentViewCore = getContentViewCore();
39 contentViewCore.evaluateJavaScript("foobar();", null);
43 DOMUtils.getNodeBounds(contentViewCore, "test"));
PostMessageTest.java 74 ContentViewCore contentViewCore = getContentViewCore();
75 loadDataSync(contentViewCore, URL1, "text/html", false);
76 contentViewCore.postMessageToFrame(null, MESSAGE, SOURCE_ORIGIN, "*");
ContentViewCoreFocusTest.java 57 final ContentViewCore contentViewCore = getContentViewCore();
58 final View view = contentViewCore.getContainerView();
62 contentViewCore.setInputMethodManagerWrapperForTest(immw);
ContentViewCoreSelectionTest.java 37 private ContentViewCore mContentViewCore;
187 final ContentViewCore contentViewCore = mContentViewCore;
192 contentViewCore.onShow();
194 contentViewCore.onHide();
201 final ContentViewCore contentViewCore = mContentViewCore;
206 contentViewCore.onAttachedToWindow();
208 contentViewCore.onDetachedFromWindow();
215 final ContentViewCore contentViewCore = mContentViewCore
    [all...]
NavigationTest.java 31 private void goBack(final ContentViewCore contentViewCore,
38 contentViewCore.getWebContents().getNavigationController().goBack();
43 private void reload(final ContentViewCore contentViewCore,
50 contentViewCore.getWebContents().getNavigationController().reload(true);
60 ContentViewCore contentViewCore = activity.getActiveContentViewCore();
62 new TestCallbackHelperContainer(contentViewCore);
64 loadUrl(contentViewCore, testCallbackHelperContainer, new LoadUrlParams(URL_2))
    [all...]
TransitionTest.java 40 private ContentViewCore mContentViewCore;
43 TestNavigationTransitionDelegate(ContentViewCore contentViewCore, boolean handleDefer) {
44 mContentViewCore = contentViewCore;
110 ContentViewCore contentViewCore = activity.getActiveContentViewCore();
112 new TestCallbackHelperContainer(contentViewCore);
114 contentViewCore.getWebContents().setHasPendingNavigationTransitionForTesting();
116 contentViewCore,
118 contentViewCore.getWebContents().setNavigationTransitionDelegate(delegate)
    [all...]
  /external/chromium_org/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/
CastWindowManager.java 15 import org.chromium.content.browser.ContentViewCore;
124 ContentViewCore contentViewCore = mActiveCastWindow.getContentViewCore();
125 if (contentViewCore != null) {
126 mContentViewRenderView.setCurrentContentViewCore(contentViewCore);
127 contentViewCore.onShow();
141 ContentViewCore contentViewCore = shellView.getContentViewCore();
142 if (contentViewCore != null) contentViewCore.onHide()
    [all...]
  /external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
ChromeShellUrlTest.java 11 import org.chromium.content.browser.ContentViewCore;
46 // Ensure we have a valid ContentViewCore.
47 final AtomicReference<ContentViewCore> contentViewCore =
48 new AtomicReference<ContentViewCore>();
52 contentViewCore.set(activity.getActiveContentViewCore());
55 assertNotNull(contentViewCore.get());
56 assertNotNull(contentViewCore.get().getContainerView());
67 isShowingInterstitialPage.set(contentViewCore.get().getWebContents()
69 url.set(contentViewCore.get().getWebContents().getUrl())
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
JavascriptEventObserver.java 7 import org.chromium.content.browser.ContentViewCore;
13 * 1. Call register() is to add a javascript interface into ContentViewCore.
24 * @param contentViewCore
27 public void register(ContentViewCore contentViewCore, String name) {
28 contentViewCore.addPossiblyUnsafeJavascriptInterface(this, name, null);
  /external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
ShellManager.java 20 import org.chromium.content.browser.ContentViewCore;
148 ContentViewCore contentViewCore = mActiveShell.getContentViewCore();
149 if (contentViewCore != null) {
150 mContentViewRenderView.setCurrentContentViewCore(contentViewCore);
151 contentViewCore.onShow();
159 ContentViewCore contentViewCore = shellView.getContentViewCore();
160 if (contentViewCore != null) contentViewCore.onHide()
    [all...]
  /external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/
ChromiumLinkerTestActivity.java 22 import org.chromium.content.browser.ContentViewCore;
158 ContentViewCore contentViewCore = getActiveContentViewCore();
159 if (contentViewCore != null) contentViewCore.onHide();
166 ContentViewCore contentViewCore = getActiveContentViewCore();
167 if (contentViewCore != null) contentViewCore.onShow();
181 * @return The {@link ContentViewCore} owned by the currently visible {@link Shell} or null i
    [all...]
  /external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/
ContentShellActivity.java 21 import org.chromium.content.browser.ContentViewCore;
127 ContentViewCore contentViewCore = getActiveContentViewCore();
128 if (contentViewCore != null) {
129 outState.putString(ACTIVE_SHELL_URL_KEY, contentViewCore.getWebContents().getUrl());
146 ContentViewCore contentViewCore = getActiveContentViewCore();
147 if (contentViewCore != null && contentViewCore.getWebContents()
149 contentViewCore.getWebContents().getNavigationController().goBack()
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestWebContentsObserver.java 7 import org.chromium.content.browser.ContentViewCore;
25 public TestWebContentsObserver(ContentViewCore contentViewCore) {
26 this(contentViewCore.getWebContents());
TestCallbackHelperContainer.java 9 import org.chromium.content.browser.ContentViewCore;
22 public TestCallbackHelperContainer(final ContentViewCore contentViewCore) {
24 contentViewCore.setContentViewClient(mTestContentViewClient);
31 mTestWebContentsObserver = new TestWebContentsObserver(contentViewCore);
108 * Starts evaluation of a given JavaScript code on a given contentViewCore.
109 * @param contentViewCore A ContentViewCore instance to be used.
112 public void evaluateJavaScript(ContentViewCore contentViewCore, String code)
    [all...]
  /external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/
ValidationMessageBubble.java 20 import org.chromium.content.browser.ContentViewCore;
33 * @param contentViewCore The ContentViewCore object to provide various
46 ContentViewCore contentViewCore, int anchorX, int anchorY,
49 contentViewCore, anchorX, anchorY, anchorWidth, anchorHeight);
50 return new ValidationMessageBubble(contentViewCore, anchorPixInScreen, mainText, subText);
54 ContentViewCore contentViewCore, RectF anchor, String mainText, String subText) {
55 final ViewGroup root = (ViewGroup) View.inflate(contentViewCore.getContext()
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/
ContextMenuHelper.java 18 import org.chromium.content.browser.ContentViewCore;
21 * A helper class that handles generating context menus for {@link ContentViewCore}s.
54 * @param contentViewCore The {@link ContentViewCore} to show the menu to.
58 private void showContextMenu(ContentViewCore contentViewCore, ContextMenuParams params) {
59 final View view = contentViewCore.getContainerView();
71 contentViewCore.setIgnoreRemainingTouchEvents();
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java 50 import org.chromium.content.browser.ContentViewCore;
77 * Exposes the native AwContents class, and together these classes wrap the ContentViewCore
115 public interface InternalAccessDelegate extends ContentViewCore.InternalAccessDelegate {
187 private ContentViewCore mContentViewCore;
233 // ContentViewCore, which are updated at end of every frame).
624 private static ContentViewCore createAndInitializeContentViewCore(ViewGroup containerView,
628 ContentViewCore.ZoomControlsDelegate zoomControlsDelegate,
630 ContentViewCore contentViewCore = new ContentViewCore(context)
    [all...]

Completed in 250 milliseconds