HomeSort by relevance Sort by last modified time
    Searched refs:fullURL (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/tests/
URLTestHelpers.h 50 // For the mock URL, fullURL == baseURL + fileName.
55 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& mimeType = WebString::fromUTF8("text/html"));
56 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& relativeBaseDirectory, const WebString& mimeType);
URLTestHelpers.cpp 44 // fullURL = baseURL + fileName.
49 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& mimeType)
51 registerMockedURLLoad(fullURL, fileName, WebString::fromUTF8(""), mimeType);
54 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& relativeBaseDirectory, const WebString& mimeType)
67 Platform::current()->unitTestSupport()->registerMockedURL(fullURL, response, WebString::fromUTF8(filePath.c_str()));
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 131 KURL fullURL = urlForState(urlString);
132 if (!fullURL.isValid() || !m_frame->document()->securityOrigin()->canRequest(fullURL)) {
134 exceptionState.throwSecurityError("A history state object with URL '" + fullURL.elidedString() + "' cannot be created in a document with origin '" + m_frame->document()->securityOrigin()->toString() + "'.");
137 m_frame->loader().updateForSameDocumentNavigation(fullURL, SameDocumentNavigationHistoryApi, data, type);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 82 KURL fullURL = context->completeURL(url);
83 if (!fullURL.isValid()) {
94 if (!shouldBypassMainWorldContentSecurityPolicy && !context->contentSecurityPolicy()->allowConnectToSource(fullURL)) {
96 exceptionState.throwSecurityError("Refused to connect to '" + fullURL.elidedString() + "' because it violates the document's Content Security Policy.");
100 RefPtrWillBeRawPtr<EventSource> source = adoptRefWillBeRefCountedGarbageCollected(new EventSource(context, fullURL, eventSourceInit));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotGridNodes.js 670 var fullURL = fullName.substring(startPos + 1, endPos).trimLeft();
671 var url = fullURL.trimURL();
    [all...]

Completed in 9518 milliseconds