Searched refs:contentViewCore (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DHistoryUtils.java28 * @param contentViewCore a ContentViewCore instance.
33 final ContentViewCore contentViewCore) throws Throwable {
38 return contentViewCore.canGoBack();
47 * @param contentViewCore a ContentViewCore instance.
54 final ContentViewCore contentViewCore, final int offset) throws Throwable {
59 return contentViewCore.canGoToOffset(offset);
68 * @param contentViewCore a ContentViewCore instance.
73 final ContentViewCore contentViewCore) throws Throwable {
78 return contentViewCore.canGoForward();
87 * @param contentViewCore
32 canGoBackOnUiThread(Instrumentation instrumentation, final ContentViewCore contentViewCore) argument
53 canGoToOffsetOnUiThread(Instrumentation instrumentation, final ContentViewCore contentViewCore, final int offset) argument
72 canGoForwardOnUiThread(Instrumentation instrumentation, final ContentViewCore contentViewCore) argument
90 clearHistoryOnUiThread(Instrumentation instrumentation, final ContentViewCore contentViewCore) argument
108 getUrlOnUiThread(Instrumentation instrumentation, final ContentViewCore contentViewCore) argument
130 goToOffsetSync(Instrumentation instrumentation, final ContentViewCore contentViewCore, CallbackHelper onPageFinishedHelper, final int offset) argument
155 goBackSync(Instrumentation instrumentation, final ContentViewCore contentViewCore, CallbackHelper onPageFinishedHelper) argument
178 goForwardSync(Instrumentation instrumentation, final ContentViewCore contentViewCore, CallbackHelper onPageFinishedHelper) argument
[all...]
H A DTestInputMethodManagerWrapper.java22 public TestInputMethodManagerWrapper(ContentViewCore contentViewCore) { argument
24 mContentViewCore = contentViewCore;
H A DTestWebContentsObserver.java23 public TestWebContentsObserver(ContentViewCore contentViewCore) { argument
24 super(contentViewCore);
H A DTestCallbackHelperContainer.java87 * Starts evaluation of a given JavaScript code on a given contentViewCore.
88 * @param contentViewCore A ContentViewCore instance to be used.
91 public void evaluateJavaScript(ContentViewCore contentViewCore, String code) { argument
99 contentViewCore.evaluateJavaScript(code, callback);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DClearHistoryTest.java42 final ContentViewCore contentViewCore = testContainerView.getContentViewCore();
49 HistoryUtils.goBackSync(getInstrumentation(), contentViewCore, onPageFinishedHelper);
51 HistoryUtils.canGoBackOnUiThread(getInstrumentation(), contentViewCore));
53 HistoryUtils.canGoForwardOnUiThread(getInstrumentation(), contentViewCore));
55 HistoryUtils.clearHistoryOnUiThread(getInstrumentation(), contentViewCore);
57 HistoryUtils.canGoBackOnUiThread(getInstrumentation(), contentViewCore));
59 HistoryUtils.canGoForwardOnUiThread(getInstrumentation(), contentViewCore));
H A DSaveRestoreStateTest.java25 public final ContentViewCore contentViewCore; field in class:SaveRestoreStateTest.TestVars
32 this.contentViewCore = this.awContents.getContentViewCore();
93 return vars.contentViewCore.getNavigationHistory();
136 return TITLES[0].equals(restoredVars.contentViewCore.getTitle()) &&
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DValidationMessageBubble.java33 * @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(),
59 measure(contentViewCore.getRenderCoordinates());
61 contentViewCore, (int) (anchor.centerX() - getAnchorOffset()), (int) anchor.bottom);
63 contentViewCore.getContainerView(), Gravity.NO_GRAVITY, origin.x, origin.y);
76 * @param contentViewCore Th
45 createAndShow( ContentViewCore contentViewCore, int anchorX, int anchorY, int anchorWidth, int anchorHeight, String mainText, String subText) argument
53 ValidationMessageBubble( ContentViewCore contentViewCore, RectF anchor, String mainText, String subText) argument
84 setPositionRelativeToAnchor(ContentViewCore contentViewCore, int anchorX, int anchorY, int anchorWidth, int anchorHeight) argument
93 makePixRectInScreen(ContentViewCore contentViewCore, int anchorX, int anchorY, int anchorWidth, int anchorHeight) argument
104 getWebViewOffsetYPixInScreen(ContentViewCore contentViewCore) argument
145 adjustWindowPosition(ContentViewCore contentViewCore, int x, int y) argument
[all...]
H A DWebsiteSettingsPopup.java46 private WebsiteSettingsPopup(Context context, ContentViewCore contentViewCore, argument
61 mContentViewCore = contentViewCore;
148 private static WebsiteSettingsPopup create(Context context, ContentViewCore contentViewCore, argument
150 return new WebsiteSettingsPopup(context, contentViewCore, nativeWebsiteSettingsPopup);
154 private native byte[][] nativeGetCertificateChain(ContentViewCore contentViewCore); argument
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DJavascriptEventObserver.java24 * @param contentViewCore
27 public void register(ContentViewCore contentViewCore, String name) { argument
28 contentViewCore.addPossiblyUnsafeJavascriptInterface(this, name, null);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentSettings.java30 ContentSettings(ContentViewCore contentViewCore, int nativeContentView) { argument
32 mContentViewCore = contentViewCore;
H A DWebContentsObserverAndroid.java18 public WebContentsObserverAndroid(ContentViewCore contentViewCore) { argument
19 mNativeWebContentsObserverAndroid = nativeInit(contentViewCore.getNativeContentViewCore());
H A DContentViewRenderView.java142 ContentViewCore contentViewCore = contentView.getContentViewCore();
144 contentViewCore.getNativeContentViewCore());
147 contentViewCore.onPhysicalBackingSizeChanged(getWidth(), getHeight());
148 mVSyncAdapter.setVSyncListener(contentViewCore.getVSyncListener(mVSyncAdapter));
H A DZoomManager.java93 ZoomManager(final Context context, ContentViewCore contentViewCore) { argument
94 mContentViewCore = contentViewCore;
H A DSmoothScroller.java44 SmoothScroller(ContentViewCore contentViewCore, boolean scrollDown, argument
46 mContentViewCore = contentViewCore;
/external/chromium_org/chrome/android/testshell/javatests/src/org/chromium/chrome/testshell/
H A DChromiumTestShellUrlTest.java44 final AtomicReference<ContentViewCore> contentViewCore =
52 contentViewCore.set(activeContentView.getContentViewCore());
57 assertNotNull(contentViewCore.get());
68 isShowingInterstitialPage.set(contentViewCore.get().isShowingInterstitialPage());
69 url.set(contentViewCore.get().getUrl());
70 title.set(contentViewCore.get().getTitle());
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DJellyBeanBrowserAccessibilityManager.java26 ContentViewCore contentViewCore) {
27 super(nativeBrowserAccessibilityManagerAndroid, contentViewCore);
25 JellyBeanBrowserAccessibilityManager(int nativeBrowserAccessibilityManagerAndroid, ContentViewCore contentViewCore) argument
H A DBrowserAccessibilityManager.java60 * @param contentViewCore The content view that this object provides accessibility for.
64 ContentViewCore contentViewCore) {
67 nativeBrowserAccessibilityManagerAndroid, contentViewCore);
70 nativeBrowserAccessibilityManagerAndroid, contentViewCore);
75 ContentViewCore contentViewCore) {
77 mContentViewCore = contentViewCore;
63 create(int nativeBrowserAccessibilityManagerAndroid, ContentViewCore contentViewCore) argument
74 BrowserAccessibilityManager(int nativeBrowserAccessibilityManagerAndroid, ContentViewCore contentViewCore) argument
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwAutofillManagerDelegate.java36 public void init(ContentViewCore contentViewCore) { argument
37 mContentViewCore = contentViewCore;
38 mContainerView = contentViewCore.getContainerView();
H A DAwWebContentsDelegateAdapter.java133 public void showRepostFormWarningDialog(final ContentViewCore contentViewCore) { argument
147 contentViewCore.continuePendingReload();
151 contentViewCore.cancelPendingReload();
H A DAwContentsClient.java61 public AwWebContentsObserver(ContentViewCore contentViewCore) { argument
62 super(contentViewCore);
138 final void installWebContentsObserver(ContentViewCore contentViewCore) { argument
142 mWebContentsObserver = new AwWebContentsObserver(contentViewCore);
/external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/
H A DColorChooserAndroid.java50 ContentViewCore contentViewCore,
53 contentViewCore.getContext(), initialColor);
48 createColorChooserAndroid( int nativeColorChooserAndroid, ContentViewCore contentViewCore, int initialColor) argument
H A DWebContentsDelegateAndroid.java147 public void showRepostFormWarningDialog(ContentViewCore contentViewCore) { argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DNavigationTest.java70 ContentViewCore contentViewCore = contentView.getContentViewCore();
71 NavigationHistory history = contentViewCore
86 history = contentViewCore.getDirectedNavigationHistory(false, 4);
92 history = contentViewCore.getDirectedNavigationHistory(true, 4);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeChooserAndroid.java52 ContentViewCore contentViewCore,
58 contentViewCore.getContext(), nativeDateTimeChooserAndroid);
51 createDateTimeChooser( ContentViewCore contentViewCore, int nativeDateTimeChooserAndroid, int dialogType, int year, int month, int day, int hour, int minute, int second, int week, double min, double max) argument
H A DSelectPopupDialog.java117 private SelectPopupDialog(ContentViewCore contentViewCore, String[] labels, int[] enabled, argument
119 mContentViewCore = contentViewCore;
207 public static void show(ContentViewCore contentViewCore, String[] items, int[] enabled, argument
213 sShownDialog = new SelectPopupDialog(contentViewCore, items, enabled, multiple,

Completed in 516 milliseconds

12