HomeSort by relevance Sort by last modified time
    Searched full:kurl (Results 51 - 75 of 798) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 218 // url is not from KURL::string(), i.e. it has not already been parsed by KURL, so we have to use the relative URL constructor for KURL instead of the ParsedURLStringTag version.
219 PageGroup::pageGroup(pageGroup->identifier())->addUserScriptToWorld(scriptWorld->coreWorld(), source, KURL(KURL(), url), toStringVector(whitelist), toStringVector(blacklist), injectionTime, injectedFrames);
224 // url is not from KURL::string(), i.e. it has not already been parsed by KURL, so we have to use the relative URL constructor for KURL instead of the ParsedURLStringTag version.
225 PageGroup::pageGroup(pageGroup->identifier())->addUserStyleSheetToWorld(scriptWorld->coreWorld(), source, KURL(KURL(), url), toStringVector(whitelist), toStringVector(blacklist), injectedFrames)
    [all...]
  /external/webkit/Source/WebCore/loader/
FrameLoader.h 114 void loadURLIntoChildFrame(const KURL&, const String& referer, Frame*);
163 bool willLoadMediaElementURL(KURL&);
221 void changeLocation(PassRefPtr<SecurityOrigin>, const KURL&, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true, bool refresh = false);
222 void urlSelected(const KURL&, const String& target, PassRefPtr<Event>, bool lockHistory, bool lockBackForwardList, ReferrerPolicy);
237 KURL iconURL();
238 void commitIconURLToIconDatabase(const KURL&);
240 KURL baseURL() const;
243 String userAgent(const KURL&) const;
258 static bool isMixedContent(SecurityOrigin* context, const KURL&);
259 void checkIfDisplayInsecureContent(SecurityOrigin* context, const KURL&)
    [all...]
NavigationAction.cpp 55 NavigationAction::NavigationAction(const KURL& url, NavigationType type)
61 NavigationAction::NavigationAction(const KURL& url, FrameLoadType frameLoadType,
68 NavigationAction::NavigationAction(const KURL& url, NavigationType type, PassRefPtr<Event> event)
75 NavigationAction::NavigationAction(const KURL& url, FrameLoadType frameLoadType,
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.h 44 class KURL;
73 ApplicationCacheGroup* cacheGroupForURL(const KURL&); // Cache to load a main resource from.
74 ApplicationCacheGroup* fallbackCacheGroupForURL(const KURL&); // Cache that has a fallback entry to load a main resource from if normal loading fails.
76 ApplicationCacheGroup* findOrCreateCacheGroup(const KURL& manifestURL);
77 ApplicationCacheGroup* findInMemoryCacheGroup(const KURL& manifestURL) const;
93 bool manifestURLs(Vector<KURL>* urls);
106 ApplicationCacheGroup* loadCacheGroup(const KURL& manifestURL);
  /external/webkit/Source/WebCore/platform/network/
ResourceRequestBase.h 33 #include "KURL.h"
79 const KURL& url() const;
80 void setURL(const KURL& url);
90 const KURL& firstPartyForCookies() const;
91 void setFirstPartyForCookies(const KURL& firstPartyForCookies);
172 ResourceRequestBase(const KURL& url, ResourceRequestCachePolicy policy)
194 KURL m_url;
198 KURL m_firstPartyForCookies;
227 KURL m_url;
231 KURL m_firstPartyForCookies
    [all...]
SocketStreamHandleBase.h 35 #include "KURL.h"
58 SocketStreamHandleBase(const KURL&, SocketStreamHandleClient*);
64 KURL m_url;
  /external/chromium/chrome/browser/extensions/
extension_omnibox_unittest.cc 13 const int kUrl = ACMatchClassification::URL;
86 styles_expected.push_back(ACMatchClassification(0, kUrl | kMatch));
87 styles_expected.push_back(ACMatchClassification(1, kUrl | kMatch | kDim));
88 styles_expected.push_back(ACMatchClassification(3, kUrl | kMatch));
89 styles_expected.push_back(ACMatchClassification(4, kUrl));
126 styles_expected.push_back(ACMatchClassification(0, kUrl | kMatch | kDim));
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.h 59 class KURL;
87 static void resourceContent(ErrorString*, Frame*, const KURL&, String* result);
88 static void resourceContentBase64(ErrorString*, Frame*, const KURL&, String* result);
89 static PassRefPtr<SharedBuffer> resourceData(Frame*, const KURL&, String* textEncodingName);
90 static CachedResource* cachedResource(Frame*, const KURL&);
109 void didCreateWebSocket(unsigned long identifier, const KURL& requestURL);
  /external/webkit/Source/WebCore/notifications/
Notification.h 41 #include "KURL.h"
64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
73 KURL url() { return m_notificationURL; }
74 KURL iconURL() { return m_contents.icon(); }
115 Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
128 KURL m_notificationURL;
NotificationContents.h 41 NotificationContents(const KURL& iconUrl, const String& title, const String& body)
46 KURL icon() const { return m_icon; }
51 KURL m_icon;
  /external/webkit/Source/WebCore/page/
PageGroup.h 38 class KURL;
75 void addVisitedLink(const KURL&);
95 void addUserScriptToWorld(DOMWrapperWorld*, const String& source, const KURL&,
98 void addUserStyleSheetToWorld(DOMWrapperWorld*, const String& source, const KURL&,
103 void removeUserScriptFromWorld(DOMWrapperWorld*, const KURL&);
104 void removeUserStyleSheetFromWorld(DOMWrapperWorld*, const KURL&);
SecurityOrigin.cpp 35 #include "KURL.h"
68 SecurityOrigin::SecurityOrigin(const KURL& url, SandboxFlags sandboxFlags)
93 KURL originURL(ParsedURLString, url.path());
153 PassRefPtr<SecurityOrigin> SecurityOrigin::create(const KURL& url, SandboxFlags sandboxFlags)
156 return adoptRef(new SecurityOrigin(KURL(), sandboxFlags));
162 return create(KURL());
259 bool SecurityOrigin::canRequest(const KURL& url) const
283 bool SecurityOrigin::taintsCanvas(const KURL& url) const
326 bool SecurityOrigin::isAccessToURLWhiteListed(const KURL& url) const
332 bool SecurityOrigin::canDisplay(const KURL& url) cons
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
CookieJarQt.cpp 34 #include "KURL.h"
60 void setCookies(Document* document, const KURL& url, const String& value)
79 String cookies(const Document* document, const KURL& url)
100 String cookieRequestHeaderFieldValue(const Document* document, const KURL &url)
124 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>& rawCookies)
131 void deleteCookie(const Document*, const KURL&, const String&)
  /external/webkit/Source/WebCore/xml/
XSLStyleSheet.h 45 static PassRefPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
50 static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
54 static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
61 static PassRefPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalURL, const KURL& finalURL)
100 XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded);
102 XSLStyleSheet(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL);
  /external/webkit/Source/WebCore/html/
DOMURL.cpp 32 #include "KURL.h"
67 m_scriptExecutionContext->revokePublicBlobURL(KURL(KURL(), urlString));
URLInputType.cpp 36 #include "KURL.h"
53 return !value.isEmpty() && !KURL(KURL(), value).isValid();
  /external/webkit/Source/WebCore/platform/efl/
PasteboardEfl.cpp 29 #include "KURL.h"
59 void Pasteboard::writeURL(const KURL&, const String&, Frame*)
64 void Pasteboard::writeImage(Node* node, const KURL&, const String&)
  /external/webkit/Source/WebCore/platform/network/android/
CookieJarAndroid.cpp 34 void setCookies(Document* document, const KURL& url, const String& value)
39 String cookies(const Document* document, const KURL& url)
44 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url)
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerThread.h 43 static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&);
48 virtual PassRefPtr<WorkerContext> createWorkerContext(const KURL& url, const String& userAgent);
52 DedicatedWorkerThread(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&);
SharedWorkerThread.h 41 static PassRefPtr<SharedWorkerThread> create(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
45 virtual PassRefPtr<WorkerContext> createWorkerContext(const KURL&, const String&);
48 SharedWorkerThread(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializer.cpp 41 #include "KURL.h"
60 KURL getSubResourceURLFromElement(Element* element)
93 return KURL();
98 return KURL();
106 Vector<KURL>* frameURLs,
107 Vector<KURL>* resourceURLs)
121 KURL url = getSubResourceURLFromElement(element);
138 Vector<KURL>* frameURLs,
139 Vector<KURL>* resourceURLs)
141 KURL frameURL = frame->loader()->documentLoader()->request().url()
    [all...]
  /external/webkit/Source/WebKit2/Shared/API/c/
WKURLRequest.cpp 31 #include <WebCore/KURL.h>
43 return toAPI(WebURLRequest::create(KURL(KURL(), toImpl(url)->string())).leakRef());
  /external/webkit/Source/WebKit2/UIProcess/
WebOpenPanelResultListenerProxy.cpp 31 #include <WebCore/KURL.h>
60 KURL url(KURL(), webURL->string());
  /external/webkit/LayoutTests/fast/encoding/
percent-escaping.html 8 KURL::appendEscapingBadChars() should never escape percent characters.</p>
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext.cpp 34 #include "KURL.h"
81 checkOrigin(KURL(KURL(), video->currentSrc()));
87 void CanvasRenderingContext::checkOrigin(const KURL& url)

Completed in 806 milliseconds

1 23 4 5 6 7 8 91011>>