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.getContentViewCore().getNavigationHistory();
AwContentsTest.java 20 import org.chromium.android_webview.AwContents;
40 * AwContents tests.
72 AwContents awContents = testView.getAwContents();
74 loadUrlSync(awContents, mContentsClient.getOnPageFinishedHelper(), "about:blank");
75 destroyAwContentsOnMainSync(awContents);
111 return AwContents.getNativeInstanceCount() <= MAX_IDLE_INSTANCES;
119 assertTrue(AwContents.getNativeInstanceCount() >= CONCURRENT_INSTANCES);
120 assertTrue(AwContents.getNativeInstanceCount() <= (i + 1) * CONCURRENT_INSTANCES);
134 return AwContents.getNativeInstanceCount() <= MAX_IDLE_INSTANCES
    [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 47 import org.chromium.android_webview.AwContents;
138 DrawGLFunctor.setChromiumAwDrawGLFunction(AwContents.getAwDrawGLFunction());
139 AwContents.setAwDrawSWFunctionTable(GraphicsUtils.getDrawSWFunctionTable());
140 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();
240 scoped_ptr<AwContents> pending_contents_;
257 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;
77 AwContents.setShouldDownloadFavicons();
132 testContainerView.initialize(new AwContents(mBrowserContext, testContainerView,
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
AwTestContainerView.java 22 import org.chromium.android_webview.AwContents;
26 * A View used for testing the AwContents internals.
31 private AwContents mAwContents;
32 private AwContents.NativeGLDelegate mNativeGLDelegate;
33 private AwContents.InternalAccessDelegate mInternalAccessDelegate;
44 public void initialize(AwContents awContents) {
45 mAwContents = awContents;
52 public AwContents getAwContents() {
56 public AwContents.NativeGLDelegate getNativeGLDelegate()
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java 72 * Exposes the native AwContents class, and together these classes wrap the ContentViewCore
80 public class AwContents {
81 private static final String TAG = "AwContents";
107 * Interface that consumers of {@link AwContents} must implement to allow the proper
138 * Interface that consumers of {@link AwContents} must implement to support
149 * |containerView| is the view where the AwContents should be drawn.
164 * certain AwContents dependencies.
537 * @param awSettings AwSettings instance used to configure the AwContents.
541 public AwContents(AwBrowserContext browserContext, ViewGroup containerView, Context context,
555 public AwContents(AwBrowserContext browserContext, ViewGroup containerView, Context context
    [all...]

Completed in 276 milliseconds