/external/chromium_org/chrome/test/chromedriver/chrome/ |
automation_extension.h | 16 class WebView; 21 explicit AutomationExtension(scoped_ptr<WebView> web_view); 43 scoped_ptr<WebView> web_view_;
|
performance_logger_unittest.cc | 63 const std::string id_; // WebView id. 124 std::string webview; local 125 EXPECT_TRUE(message->GetString("webview", &webview)); 126 EXPECT_EQ(expected_webview, webview); 145 FakeDevToolsClient client("webview-1"); 158 ValidateLogEntry(log.GetEntries()[0], "webview-1", "Network.gaga"); 159 ValidateLogEntry(log.GetEntries()[1], "webview-1", "Page.ulala"); 163 FakeDevToolsClient client1("webview-1"); 164 FakeDevToolsClient client2("webview-2") [all...] |
/external/chromium_org/ui/views/controls/webview/ |
webview.gyp | 11 'target_name': 'webview', 34 'webview.cc', 35 'webview.h',
|
webview.h | 14 #include "ui/views/controls/webview/webview_export.h" 25 class WEBVIEW_EXPORT WebView : public View, 32 explicit WebView(content::BrowserContext* browser_context); 33 virtual ~WebView(); 35 // This creates a WebContents if none is yet associated with this WebView. The 36 // WebView owns this implicitly created WebContents. 39 // Creates a WebContents if none is yet assocaited with this WebView, with the 40 // specified site instance. The WebView owns this WebContents. 43 // WebView does not assume ownership of WebContents set via this method, only 60 // WebView's bounds change (default) [all...] |
/frameworks/base/core/java/android/webkit/ |
SslErrorHandler.java | 23 * created by the WebView and passed to 25 * either {@link #proceed} or {@link #cancel} to set the WebView's response 41 * Cancel this request and all pending requests for the WebView that had
|
WebView.java | 62 * in a WebView, you must add the {@code INTERNET} permissions to your 71 * <a href="{@docRoot}guide/webapps/webview.html">Building Web Apps in WebView</a>.</p> 75 * <p>By default, a WebView provides no browser-like widgets, does not 82 * with a WebView. For example: 90 * <p>To provide a WebView in your own Activity, include a {@code <WebView>} in your layout, 91 * or set the entire Activity window as a WebView during {@link 94 * WebView webview = new WebView(this) [all...] |
CookieManager.java | 22 * Manages the cookies used by an application's {@link WebView} instances. 39 * before the application instantiates a {@link WebView} instance, 50 * Sets whether the application's {@link WebView} instances should send and 53 * @param accept whether {@link WebView} instances should send and accept 61 * Gets whether the application's {@link WebView} instances send and accept 64 * @return true if {@link WebView} instances send and accept cookies 172 * Gets whether the application's {@link WebView} instances send and accept 175 * @return true if {@link WebView} instances send and accept cookies for 193 * Sets whether the application's {@link WebView} instances should send and 200 * {@link WebView} or CookieManager instance has been created [all...] |
PluginStub.java | 22 * This interface is used to implement plugins in a WebView. A plugin 24 * embedded or fullscreeen views displayed in a WebView. The PluginStub 34 * @return A custom View that will be managed by WebView.
|
/frameworks/webview/chromium/tools/ |
webview_command_line | 17 CMD_LINE_FILE=/data/local/tmp/webview-command-line 20 # If nothing specified, print the command line (stripping off "webview"). 29 adb shell "echo 'webview $*' > $CMD_LINE_FILE"
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.webkit.WebView.html | 10 android.webkit.WebView 74 Class android.webkit.<A HREF="../../../../reference/android/webkit/WebView.html" target="_top"><font size="+2"><code>WebView</code></font></A> 86 <A NAME="android.webkit.WebView.clearMatches_added()"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#clearMatches()" target="_top"><code>clearMatches</code></A>()</nobr> 93 <A NAME="android.webkit.WebView.findAll_added(java.lang.String)"></A> 94 <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebView.html#findAll(java.lang.String)" target="_top"><code>findAll</code></A>(<code>String</code>)</nobr> 100 <A NAME="android.webkit.WebView.findNext_added(boolean)"></A> 101 <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#findNext(boolean)" target="_top"><code>findNext</code></A>(<code>boolean</code>)</nobr> 107 <A NAME="android.webkit.WebView.getOriginalUrl_added()"></A [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebChromeClientTest.java | 28 import android.webkit.WebView; 345 public void onProgressChanged(WebView view, int newProgress) { 351 public void onReceivedTitle(WebView view, String title) { 358 public boolean onJsAlert(WebView view, String url, String message, JsResult result) { 367 public boolean onJsConfirm(WebView view, String url, String message, JsResult result) { 376 public boolean onJsPrompt(WebView view, String url, String message, 386 public boolean onJsBeforeUnload(WebView view, String url, String message, JsResult result) { 395 public void onCloseWindow(WebView window) { 401 public boolean onCreateWindow(WebView view, boolean dialog, boolean userGesture, 407 WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj [all...] |
WebViewClientTest.java | 26 import android.webkit.WebView; 266 public void onPageStarted(WebView view, String url, Bitmap favicon) { 272 public void onPageFinished(WebView view, String url) { 280 public void onLoadResource(WebView view, String url) { 287 public void onReceivedError(WebView view, int errorCode, 294 public void onFormResubmission(WebView view, Message dontResend, Message resend) { 300 public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) { 306 public void onReceivedHttpAuthRequest(WebView view, 313 public void onUnhandledKeyEvent(WebView view, KeyEvent event) { 319 public void onScaleChanged(WebView view, float oldScale, float newScale) [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwPdfExporter.java | 19 * Export the android webview as a PDF. 32 // Maintain a reference to the top level object (i.e. WebView) since in a common 33 // use case (offscreen webview) application may expect the framework's print manager 34 // to own the Webview (via PrintDocumentAdapter). 66 // Handle the cornercase that Webview.Destroy is called before the native side
|
/external/chromium_org/chrome/common/extensions/api/ |
webview.json | 7 "namespace": "webview", 13 "description": "Injects JavaScript code into a <webview> page.", 18 "description": "The instance ID of the guest <webview> process." 45 "description": "Injects JavaScript code into a <webview> page.", 50 "description": "The instance ID of the guest <webview> process."
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
AccessibilityControllerChromium.h | 40 class WebView; 65 void setWebView(WebKit::WebView* webView) { m_webView = webView; } 91 WebKit::WebView* m_webView;
|
TextInputController.h | 41 class WebView; 50 void setWebView(WebKit::WebView* webView) { m_webView = webView; } 63 WebKit::WebView* m_webView;
|
/external/chromium/webkit/glue/ |
dom_operations.h | 17 class WebView; 48 // Get all savable resource links from current webview, include main frame 52 bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view, 59 bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view, 67 bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view, 74 bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view, 78 int NumberOfActiveAnimations(WebKit::WebView* view);
|
webframe_unittest.cc | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 17 using WebKit::WebView; 23 WebView* view = test_shell_->webView(); 64 WebView* view = test_shell_->webView();
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowWebView.java | 8 import android.webkit.WebView; 17 @Implements(WebView.class) 36 private WebView.PictureListener pictureListener; 87 public void setPictureListener(WebView.PictureListener listener) { 91 public WebView.PictureListener getPictureListener() { 188 * @return goBackInvocations the number of times {@code android.webkit.WebView#goBack()} 198 * Sets the value to return from {@code android.webkit.WebView#canGoBack()}
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
DebugFragment.java | 25 import android.webkit.WebView; 137 WebView webview = new WebView(getActivity()); local 139 webview.clearCache(true); 140 LogUtils.w(Logging.LOG_TAG, "Cleard WebView cache."); 142 webview.destroy();
|
/external/chromium_org/content/renderer/ |
render_view_impl.cc | 197 #include "third_party/WebKit/public/web/WebView.h" 337 using WebKit::WebView; 355 typedef std::map<WebKit::WebView*, RenderViewImpl*> ViewMap; 1122 WebKit::WebView* RenderViewImpl::webview() const { function in class:content::RenderViewImpl [all...] |
/external/chromium_org/chrome/renderer/ |
external_extension.cc | 14 #include "third_party/WebKit/public/web/WebView.h" 18 using WebKit::WebView; 86 WebView* webview = webframe->view(); 87 if (!webview) return NULL; // can happen during closing 89 return RenderView::FromWebView(webview);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
MIDIClientImpl.cpp | 45 MIDIClientImpl::MIDIClientImpl(WebViewImpl* webView) 46 : m_client(webView->client() ? webView->client()->webMIDIClient() : 0)
|
UserMediaClientImpl.cpp | 45 UserMediaClientImpl::UserMediaClientImpl(WebViewImpl* webView) 46 : m_client(webView->client() ? webView->client()->userMediaClient() : 0)
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FrameTestHelpers.h | 41 class WebView; 48 WebView* createWebView(bool enableJavascript = false, WebFrameClient* = 0, WebViewClient* = 0); 49 WebView* createWebViewAndLoad(const std::string& url, bool enableJavascript = false, WebFrameClient* = 0, WebViewClient* = 0);
|