HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 326 - 350 of 3024) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/loader/
MainResourceLoader.cpp 182 // Check if the redirected url is allowed to access the redirecting url's timing information.
183 RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(newRequest.url());
184 if (!securityOrigin->canRequest(redirectResponse.url()))
194 // Update cookie policy base URL as URL changes, except for subframes, which use the
195 // URL of the main frame which doesn't change when we redirect.
197 newRequest.setFirstPartyForCookies(newRequest.url());
213 frameLoader()->checkIfDisplayInsecureContent(top->document()->securityOrigin(), newRequest.url());
217 // We checked application cache for initial URL, now we need to check it for redirected one
244 KURL url = request().url(); local
515 KURL url = m_substituteData.responseURL(); local
564 const KURL& url = r.url(); local
    [all...]
SubframeLoader.cpp 75 KURL url; local
77 scriptURL = completeURL(urlString); // completeURL() encodes the URL.
78 url = blankURL();
80 url = completeURL(urlString);
82 Frame* frame = loadOrRedirectSubframe(ownerElement, url, frameName, lockHistory, lockBackForwardList);
92 bool SubframeLoader::resourceWillUsePlugin(const String& url, const String& mimeType, bool shouldPreferPlugInsForImages)
95 if (!url.isEmpty())
96 completedURL = completeURL(url);
102 bool SubframeLoader::requestPlugin(HTMLPlugInImageElement* ownerElement, const KURL& url, const String& mimeType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback)
116 if (!m_frame->document()->contentSecurityPolicy()->allowObjectFromSource(url))
    [all...]
  /external/chromium/chrome/browser/automation/
automation_util.h 35 // Gets the size and value of the cookie string for |url| in the given tab.
37 void GetCookies(const GURL& url,
42 // Sets a cookie for |url| in the given tab. Can be called from any thread.
43 void SetCookie(const GURL& url,
48 // Deletes a cookie for |url| in the given tab. Can be called from any thread.
49 void DeleteCookie(const GURL& url,
54 // Gets the cookies for the given URL. Uses the JSON interface.
60 // Deletes the cookie with the given name for the URL. Uses the JSON interface.
66 // Sets a cookie for the given URL. Uses the JSON interface.
  /external/chromium/chrome/browser/chromeos/login/
help_app_launcher.cc 41 GURL url(base::StringPrintf(kHelpAppFormat,
45 if (service->GetExtensionByURL(url))
46 ShowHelpTopicDialog(GURL(url));
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.h 20 // Returns a pattern that matches the host of this URL and all subdomains.
21 static ContentSettingsPattern FromURL(const GURL& url);
23 // Returns a pattern that matches exactly this URL.
24 static ContentSettingsPattern FromURLNoWildcard(const GURL& url);
37 // TODO(jochen): should also return true for a complete URL without a host.
40 // True if |url| matches this pattern.
41 bool Matches(const GURL& url) const;
  /external/chromium/chrome/browser/extensions/
extension_infobar_module.cc 37 GURL url = extension->GetResourceURL(extension->url(), html_path); local
57 GetExtension(), url));
  /external/chromium/chrome/browser/history/
history_publisher.h 38 const GURL& url, const base::Time& time) const;
39 void PublishPageContent(const base::Time& time, const GURL& url,
48 const GURL& url; member in struct:history::HistoryPublisher::PageData
  /external/chromium/chrome/browser/
load_notification_details.h 21 LoadNotificationDetails(const GURL& url,
26 : url_(url),
34 const GURL& url() const { return url_; } function in class:LoadNotificationDetails
41 GURL url_; // the URL loaded
browser_about_handler_unittest.cc 109 GURL url(test_data[i].test_url);
111 chrome_about_handler::WillHandle(url));
113 WillHandleBrowserAboutURL(&url, &profile));
114 EXPECT_EQ(test_data[i].result_url, url);
118 GURL url(chrome::kAboutBrowserCrash);
119 EXPECT_DEATH(WillHandleBrowserAboutURL(&url, NULL), "");
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_host_unittest.cc 164 void ExpectPreClassificationChecks(const GURL& url,
180 EXPECT_CALL(*sb_service_, MatchCsdWhitelistUrl(url))
184 EXPECT_CALL(*csd_service_, GetValidCachedResult(url, NotNull()))
189 EXPECT_CALL(*csd_service_, IsInCache(url)).WillOnce(Return(*is_in_cache));
246 cb->Run(GURL(verdict.url()), false);
277 cb->Run(GURL(verdict.url()), false);
342 // a single interstitial is shown for the second URL.
377 // We expect that the interstitial is shown for the second phishing URL and
378 // not for the first phishing URL.
420 GURL first_url("http://first.phishy.url.com")
    [all...]
  /external/chromium/chrome/common/extensions/
extension_set.h 37 // Returns the extension ID that the given URL is a part of, or empty if
39 std::string GetIdByURL(const GURL& url) const;
41 // Returns the Extension that the given URL is a part of, or NULL if none.
46 const Extension* GetByURL(const GURL& url) const;
49 // |old_url|. Also returns true if neither URL is in an app.
55 // Returns true if |url| should get extension api bindings and be permitted
58 bool ExtensionBindingsAllowed(const GURL& url) const;
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher_unittest.h 23 const GURL& url,
46 const GURL& url,
49 return new T(success_, url, results_, request_type, d);
  /external/chromium/net/base/
host_port_pair.cc 20 HostPortPair HostPortPair::FromURL(const GURL& url) {
21 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
  /external/proguard/src/proguard/
FileWordReader.java 24 import java.net.URL;
28 * A <code>WordReader</code> that returns words from a file or a URL.
53 * Creates a new FileWordReader for the given URL.
55 public FileWordReader(URL url) throws IOException
59 this.name = url.toString();
62 new InputStreamReader(url.openStream())));
  /external/webkit/Source/WebCore/html/
HTMLPlugInImageElement.h 50 const String& url() const { return m_url; } function in class:WebCore::HTMLPlugInImageElement
69 bool allowedToLoadFrameURL(const String& url);
70 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType);
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.h 45 static PassRefPtr<ApplicationCacheResource> create(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> buffer = SharedBuffer::create(), const String& path = String())
47 ASSERT(!url.hasFragmentIdentifier());
48 return adoptRef(new ApplicationCacheResource(url, response, type, buffer, path));
  /external/webkit/Source/WebCore/platform/network/
BlobRegistryImpl.cpp 71 RefPtr<BlobResourceHandle> handle = BlobResourceHandle::create(m_blobs.get(request.url().string()), request, client);
81 BlobResourceHandle::loadResourceSynchronously(m_blobs.get(request.url().string()), request, error, response, data);
125 void BlobRegistryImpl::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
145 if (m_blobs.contains(iter->url.string()))
146 appendStorageItems(blobStorageData.get(), m_blobs.get(iter->url.string())->items(), iter->offset, iter->length);
151 m_blobs.set(url.string(), blobStorageData);
154 void BlobRegistryImpl::registerBlobURL(const KURL& url, const KURL& srcURL)
163 m_blobs.set(url.string(), src);
166 void BlobRegistryImpl::unregisterBlobURL(const KURL& url)
169 m_blobs.remove(url.string())
    [all...]
  /external/webkit/Source/WebCore/websockets/
ThreadableWebSocketChannel.cpp 53 PassRefPtr<ThreadableWebSocketChannel> ThreadableWebSocketChannel::create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol)
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
69 return WebSocketChannel::create(context, client, url, protocol);
WebSocketHandshakeRequest.cpp 53 WebSocketHandshakeRequest::WebSocketHandshakeRequest(const String& requestMethod, const KURL& url)
54 : m_url(url)
68 KURL WebSocketHandshakeRequest::url() const function in class:WebCore::WebSocketHandshakeRequest
  /external/webkit/Source/WebCore/workers/
AbstractWorker.cpp 68 KURL AbstractWorker::resolveURL(const String& url, ExceptionCode& ec)
70 if (url.isEmpty()) {
76 KURL scriptURL = scriptExecutionContext()->completeURL(url);
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 30 Thumbnailer(const QUrl &url);
57 Thumbnailer::Thumbnailer(const QUrl &url)
59 page.mainFrame()->load(url);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
LayoutTestControllerQt.cpp 74 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url)
76 QString path = QDir::toNativeSeparators(QString(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url)));
  /frameworks/base/core/java/android/webkit/
CookieManager.java 71 * Sets a cookie for the given URL. Any existing cookie with the same host,
76 * @param url the URL for which the cookie is set
80 public void setCookie(String url, String value) {
85 * Gets the cookies for the given URL.
87 * @param url the URL for which the cookies are requested
91 public String getCookie(String url) {
98 * @param url the URL for which the cookies are requeste
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 66 public void onReceivedTouchIconUrl(WebView view, String url,
68 mWrappedClient.onReceivedTouchIconUrl(view, url, precomposed);
106 public boolean onJsAlert(WebView view, String url, String message,
108 return mWrappedClient.onJsAlert(view, url, message, result);
113 public boolean onJsConfirm(WebView view, String url, String message,
115 return mWrappedClient.onJsConfirm(view, url, message, result);
120 public boolean onJsPrompt(WebView view, String url, String message,
122 return mWrappedClient.onJsPrompt(view, url, message, defaultValue, result);
127 public boolean onJsBeforeUnload(WebView view, String url, String message,
129 return mWrappedClient.onJsBeforeUnload(view, url, message, result)
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.css 16 background-image: url(images/resource-article.png);
20 background-image: url(images/resource-sample.png);
24 background-image: url(images/resource-tutorial.png);

Completed in 2870 milliseconds

<<11121314151617181920>>