Home
last modified time | relevance | path

Searched refs:frameName (Results 1 – 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
DArchiveResourceCollection.cpp55 const String& frameName = archive->mainResource()->frameName(); in addAllResources() local
56 if (!frameName.isNull()) { in addAllResources()
57 m_subframes.set(frameName, archive.get()); in addAllResources()
86 PassRefPtr<MHTMLArchive> ArchiveResourceCollection::popSubframeArchive(const String& frameName, con… in popSubframeArchive() argument
88 RefPtr<MHTMLArchive> archive = m_subframes.take(frameName); in popSubframeArchive()
DArchiveResource.cpp34 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR… in ArchiveResource() argument
40 , m_frameName(frameName) in ArchiveResource()
45 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR… in create() argument
51 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, in create()
54 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, response)); in create()
DArchiveResource.h44 const AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName,
52 const String& frameName() const { return m_frameName; } in frameName() function
55 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR…
DArchiveResourceCollection.h50 PassRefPtr<MHTMLArchive> popSubframeArchive(const String& frameName, const KURL&);
/external/chromium_org/third_party/WebKit/Source/core/page/
DCreateWindow.cpp49 ASSERT(!features.dialog || request.frameName().isEmpty()); in createWindow()
51 …if (!request.frameName().isEmpty() && request.frameName() != "_blank" && policy == NavigationPolic… in createWindow()
52 …if (LocalFrame* frame = lookupFrame.loader().findFrameForNavigation(request.frameName(), openerFra… in createWindow()
53 if (request.frameName() != "_self") in createWindow()
86 if (request.frameName() != "_blank") in createWindow()
87 frame.tree().setName(request.frameName()); in createWindow()
117 LocalFrame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatur… in createWindow() argument
135 FrameLoadRequest frameRequest(callingWindow.document(), request, frameName); in createWindow()
DCreateWindow.h40 LocalFrame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatur…
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoadRequest.h59 …st(Document* originDocument, const ResourceRequest& resourceRequest, const AtomicString& frameName) in FrameLoadRequest()
62 , m_frameName(frameName) in FrameLoadRequest()
84 const AtomicString& frameName() const { return m_frameName; } in frameName() function
85 void setFrameName(const AtomicString& frameName) { m_frameName = frameName; } in setFrameName()
DFrameLoader.cpp689 if (!request.formState() && request.frameName().isEmpty()) in prepareRequestForThisFrame()
698 if (!targetFrame && !request.frameName().isEmpty()) in shouldOpenInNewWindow()
718 …= request.formState() ? 0 : findFrameForNavigation(AtomicString(request.frameName()), request.form… in load()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFrameOwnerElement.cpp220 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const AtomicString& frameName, … in loadOrRedirectSubframe() argument
238 …RefPtr<LocalFrame> childFrame = parentFrame->loader().client()->createFrame(url, frameName, Referr… in loadOrRedirectSubframe()
DHTMLFrameOwnerElement.h81 … bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DChromeWebContentsDelegateAndroid.java37 String frameName, String targetUrl, long newWebContents) { in webContentsCreated() argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8WindowCustom.cpp369 AtomicString frameName; in openMethodCustom() local
371 frameName = "_blank"; in openMethodCustom()
374 frameName = frameNameResource; in openMethodCustom()
378 …RefPtrWillBeRawPtr<LocalDOMWindow> openedWindow = impl->open(urlString, frameName, windowFeaturesS… in openMethodCustom()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DFrameTestHelpers.h100 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE;
DFrameTestHelpers.cpp307 WebFrame* TestWebFrameClient::createChildFrame(WebLocalFrame* parent, const WebString& frameName) in createChildFrame() argument
DWebViewTest.cpp1603 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE;
1611 … CreateChildCounterFrameClient::createChildFrame(WebLocalFrame* parent, const WebString& frameName) in createChildFrame() argument
1614 return TestWebFrameClient::createChildFrame(parent, frameName); in createChildFrame()
DWebFrameTest.cpp5375 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE in createChildFrame() argument
/external/chromium_org/content/shell/renderer/test_runner/
DWebTestDelegate.h150 virtual void loadURLForFrame(const blink::WebURL&, const std::string& frameName) = 0;
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalDOMWindow.cpp1814 …ndow> LocalDOMWindow::open(const String& urlString, const AtomicString& frameName, const String& w… in open() argument
1829 if (frameName.isEmpty() || !m_frame->tree().find(frameName)) in open()
1836 if (frameName == "_top") in open()
1838 else if (frameName == "_parent") { in open()
1868 …LocalFrame* result = createWindow(urlString, frameName, windowFeatures, *callingWindow, *firstFram… in open()
DLocalDOMWindow.h155 …awPtr<LocalDOMWindow> open(const String& urlString, const AtomicString& frameName, const String& w…
/external/chromium_org/third_party/WebKit/public/web/
DWebFrameClient.h142 …virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) { return 0; } in createChildFrame() argument
/external/chromium_org/third_party/WebKit/Source/web/
DChromeClientImpl.cpp236 …mFrame(frame), WrappedResourceRequest(r.resourceRequest()), features, r.frameName(), policy, shoul… in createWindow()
DWebLocalFrameImpl.cpp1614 …meImpl* webframeChild = toWebLocalFrameImpl(m_client->createChildFrame(this, request.frameName())); in createChildFrame()
1622 …ameChild->initializeAsChildFrame(frame()->host(), ownerElement, request.frameName(), ownerElement-… in createChildFrame()