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

  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
StandaloneAwQuotaManagerBridgeTest.java 7 import org.chromium.android_webview.AwContents;
12 * This class tests AwQuotaManagerBridge runs without AwContents etc. It simulates
20 assertEquals(AwContents.getNativeInstanceCount(), 0);
NavigationHistoryTest.java 9 import org.chromium.android_webview.AwContents;
39 private AwContents mAwContents;
44 AwContents.setShouldDownloadFavicons();
58 private NavigationHistory getNavigationHistory(final AwContents awContents)
63 return awContents.getNavigationController().getNavigationHistory();
AwContentsTest.java 22 import org.chromium.android_webview.AwContents;
43 * AwContents tests.
74 AwContents awContents = testView.getAwContents();
76 loadUrlSync(awContents, mContentsClient.getOnPageFinishedHelper(), "about:blank");
77 destroyAwContentsOnMainSync(awContents);
102 AwContents awContents =
104 awContents.destroy();
106 assertNull(awContents.getWebContents())
    [all...]
AwContentsClientFaviconTest.java 13 import org.chromium.android_webview.AwContents;
85 private AwContents mAwContents;
91 AwContents.setShouldDownloadFavicons();
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebIconDatabaseAdapter.java 23 import org.chromium.android_webview.AwContents;
31 AwContents.setShouldDownloadFavicons();
WebViewChromiumFactoryProvider.java 45 import org.chromium.android_webview.AwContents;
177 DrawGLFunctor.setChromiumAwDrawGLFunction(AwContents.getAwDrawGLFunction());
178 AwContents.setAwDrawSWFunctionTable(GraphicsUtils.getDrawSWFunctionTable());
179 AwContents.setAwDrawGLFunctionTable(GraphicsUtils.getDrawGLFunctionTable());
  /external/chromium_org/android_webview/native/
aw_contents.h 57 class AwContents : public FindHelper::Listener,
64 // Returns the AwContents instance associated with |web_contents|, or NULL.
65 static AwContents* FromWebContents(content::WebContents* web_contents);
67 // Returns the AwContents instance associated with with the given
69 static AwContents* FromID(int render_process_id, int render_view_id);
71 AwContents(scoped_ptr<content::WebContents> web_contents);
72 virtual ~AwContents();
241 scoped_ptr<AwContents> pending_contents_;
258 DISALLOW_COPY_AND_ASSIGN(AwContents);
aw_contents.cc 96 // AwContents.onPrepareDrawGL; this cast must match the code there.
97 reinterpret_cast<android_webview::AwContents*>(view_context)
112 AwContentsUserData(AwContents* ptr) : contents_(ptr) {}
114 static AwContents* GetContents(WebContents* web_contents) {
123 AwContents* contents_;
138 AwContents* AwContents::FromWebContents(WebContents* web_contents) {
144 AwContents* AwContents::FromID(int render_process_id, int render_view_id) {
157 AwContents* aw_contents = AwContents::FromID(render_process_id
    [all...]
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
AwShellActivity.java 33 import org.chromium.android_webview.AwContents;
83 AwContents.setShouldDownloadFavicons();
140 testContainerView.initialize(new AwContents(mBrowserContext, testContainerView,
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
AwTestContainerView.java 25 import org.chromium.android_webview.AwContents;
33 * A View used for testing the AwContents internals.
38 private AwContents mAwContents;
39 private AwContents.NativeGLDelegate mNativeGLDelegate;
40 private AwContents.InternalAccessDelegate mInternalAccessDelegate;
250 public void initialize(AwContents awContents) {
251 mAwContents = awContents;
262 public AwContents getAwContents() {
266 public AwContents.NativeGLDelegate getNativeGLDelegate()
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java 77 * Exposes the native AwContents class, and together these classes wrap the ContentViewCore
85 public class AwContents implements SmartClipProvider {
86 private static final String TAG = "AwContents";
112 * Interface that consumers of {@link AwContents} must implement to allow the proper
143 * Interface that consumers of {@link AwContents} must implement to support
154 * |containerView| is the view where the AwContents should be drawn.
169 * certain AwContents dependencies.
256 // True when this AwContents has been destroyed.
549 * @param awSettings AwSettings instance used to configure the AwContents.
553 public AwContents(AwBrowserContext browserContext, ViewGroup containerView, Context context
    [all...]

Completed in 257 milliseconds