Searched defs:webContents (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/chrome/browser/ui/cocoa/tab_contents/
H A Dtab_contents_controller.h45 @property(readonly, nonatomic) content::WebContents* webContents; variable
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DVoiceSearchTabHelper.java19 * @param webContents WebContents to update media autoplay status.
21 public VoiceSearchTabHelper(WebContents webContents) { argument
22 super(webContents);
23 mWebContents = webContents;
31 private native void nativeUpdateAutoplayStatus(WebContents webContents); argument
H A DWebsiteSettingsPopup.java51 private WebsiteSettingsPopup(Context context, WebContents webContents) { argument
53 mWebContents = webContents;
69 mNativeWebsiteSettingsPopup = nativeInit(this, webContents);
230 * @param webContents The WebContents for which to show Website information. This
234 public static void show(Context context, WebContents webContents) { argument
235 new WebsiteSettingsPopup(context, webContents);
238 private static native long nativeInit(WebsiteSettingsPopup popup, WebContents webContents); argument
241 long nativeWebsiteSettingsPopupAndroid, WebContents webContents);
242 private native byte[][] nativeGetCertificateChain(WebContents webContents); argument
240 nativeResetCertDecisions( long nativeWebsiteSettingsPopupAndroid, WebContents webContents) argument
H A DTab.java265 public TabWebContentsObserverAndroid(WebContents webContents) { argument
266 super(webContents);
837 WebContents webContents = mContentViewCore.getWebContents();
840 mContentViewCore.getContainerView(), webContents);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/
H A DDomDistillerTabUtils.java24 * @param webContents the WebContents to distill.
26 public static void distillCurrentPageAndView(WebContents webContents) { argument
27 nativeDistillCurrentPageAndView(webContents);
40 private static native void nativeDistillCurrentPageAndView(WebContents webContents); argument
H A DDomDistillerFeedbackReporter.java156 long nativeFeedbackReporterAndroid, WebContents webContents);
155 nativeReplaceWebContents( long nativeFeedbackReporterAndroid, WebContents webContents) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DDataReductionProxyInfoBarDelegate.java17 * @param webContents The {@link WebContents} in which to launch the {@link InfoBar}.
19 static void launch(WebContents webContents, String linkUrl) { argument
20 nativeLaunch(webContents, linkUrl);
46 protected static native void nativeLaunch(WebContents webContents, String linkUrl); argument
H A DDataReductionProxyInfoBar.java22 * @param webContents The {@link WebContents} in which to open the {@link InfoBar}.
29 public static void launch(WebContents webContents, argument
39 DataReductionProxyInfoBarDelegate.launch(webContents, linkUrl);
47 public static void launch(WebContents webContents, argument
52 launch(webContents, settingsClassName, drpSettingsClassName, title, linkText, "");
H A DInfoBarContainer.java121 int tabId, ViewGroup parentView, WebContents webContents) {
153 mNativeInfoBarContainer = nativeInit(webContents, mAutoLoginDelegate);
590 private native long nativeInit(WebContents webContents, AutoLoginDelegate autoLoginDelegate); argument
120 InfoBarContainer(Activity activity, AutoLoginProcessor autoLoginProcessor, int tabId, ViewGroup parentView, WebContents webContents) argument
/external/chromium_org/chrome/browser/ui/cocoa/translate/
H A Dtranslate_bubble_controller.h60 @property(readonly, nonatomic) const content::WebContents* webContents; variable
65 webContents:(content::WebContents*)webContents;
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DInterstitialPageTest.java33 public TestWebContentsObserverAndroid(WebContents webContents) { argument
34 super(webContents);
H A DWebContentsObserverAndroidTest.java28 public TestWebContentsObserverAndroid(WebContents webContents) { argument
29 super(webContents);
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DHistoryUtils.java34 final WebContents webContents) throws Throwable {
39 return webContents.getNavigationController().canGoBack();
55 final WebContents webContents, final int offset) throws Throwable {
60 return webContents.getNavigationController().canGoToOffset(offset);
74 final WebContents webContents) throws Throwable {
79 return webContents.getNavigationController().canGoForward();
92 final WebContents webContents) throws Throwable {
96 webContents.getNavigationController().clearHistory();
110 final WebContents webContents) throws Throwable {
115 return webContents
33 canGoBackOnUiThread(Instrumentation instrumentation, final WebContents webContents) argument
54 canGoToOffsetOnUiThread(Instrumentation instrumentation, final WebContents webContents, final int offset) argument
73 canGoForwardOnUiThread(Instrumentation instrumentation, final WebContents webContents) argument
91 clearHistoryOnUiThread(Instrumentation instrumentation, final WebContents webContents) argument
109 getUrlOnUiThread(Instrumentation instrumentation, final WebContents webContents) argument
130 goBackSync(Instrumentation instrumentation, final WebContents webContents, CallbackHelper onPageFinishedHelper) argument
153 goForwardSync(Instrumentation instrumentation, final WebContents webContents, CallbackHelper onPageFinishedHelper) argument
[all...]
H A DTestWebContentsObserver.java29 public TestWebContentsObserver(WebContents webContents) { argument
30 super(webContents);
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwWebContentsObserver.java17 public AwWebContentsObserver(WebContents webContents, AwContentsClient awContentsClient) { argument
18 super(webContents);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
H A DAppBannerManager.java236 WebContents webContents);
235 nativeReplaceWebContents(long nativeAppBannerManager, WebContents webContents) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DWebContentsObserverAndroid.java20 public WebContentsObserverAndroid(WebContents webContents) { argument
22 mNativeWebContentsObserverAndroid = nativeInit(webContents);
194 private native long nativeInit(WebContents webContents); argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DAutocompleteController.java193 * @param webContents The web contents for the tab where the selected suggestion will be shown.
197 long elapsedTimeSinceModified, WebContents webContents) {
200 webContents);
262 boolean focusedFromFakebox, long elapsedTimeSinceModified, WebContents webContents);
195 onSuggestionSelected(int selectedIndex, OmniboxSuggestion.Type type, String currentPageUrl, boolean isQueryInOmnibox, boolean focusedFromFakebox, long elapsedTimeSinceModified, WebContents webContents) argument
260 nativeOnSuggestionSelected(long nativeAutocompleteControllerAndroid, int selectedIndex, String currentPageUrl, boolean isQueryInOmnibox, boolean focusedFromFakebox, long elapsedTimeSinceModified, WebContents webContents) argument

Completed in 1341 milliseconds