Home
last modified time | relevance | path

Searched refs:pageProperty (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DPrintContext.h72 static String pageProperty(LocalFrame* frame, const char* propertyName, int pageNumber);
DPrintContext.cpp290 String PrintContext::pageProperty(LocalFrame* frame, const char* propertyName, int pageNumber) in pageProperty() function in blink::PrintContext
/external/chromium_org/third_party/WebKit/public/web/
DWebFrame.h525 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DWebRemoteFrameImpl.h144 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) OVERRIDE;
DWebLocalFrameImpl.h193 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) OVERRIDE;
DWebRemoteFrameImpl.cpp705 WebString WebRemoteFrameImpl::pageProperty(const WebString& propertyName, int pageIndex) in pageProperty() function in blink::WebRemoteFrameImpl
DWebLocalFrameImpl.cpp1341 WebString WebLocalFrameImpl::pageProperty(const WebString& propertyName, int pageIndex) in pageProperty() function in blink::WebLocalFrameImpl
1344 return m_printContext->pageProperty(frame(), propertyName.utf8().data(), pageIndex); in pageProperty()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.h242 String pageProperty(String, int, ExceptionState& = ASSERT_NO_EXCEPTION) const;
DInternals.idl190 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNumber);
DInternals.cpp1692 String Internals::pageProperty(String propertyName, int pageNumber, ExceptionState& exceptionState)… in pageProperty() function in blink::Internals
1699 return PrintContext::pageProperty(frame(), propertyName.utf8().data(), pageNumber); in pageProperty()