Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentMarker.cpp40 class DocumentMarkerDescription FINAL : public DocumentMarkerDetails {
42 static PassRefPtrWillBeRawPtr<DocumentMarkerDescription> create(const String&);
48 explicit DocumentMarkerDescription(const String& description) in DocumentMarkerDescription() function in blink::FINAL
56 PassRefPtrWillBeRawPtr<DocumentMarkerDescription> DocumentMarkerDescription::create(const String& d… in create()
58 return adoptRefWillBeNoop(new DocumentMarkerDescription(description)); in create()
61 inline DocumentMarkerDescription* toDocumentMarkerDescription(DocumentMarkerDetails* details) in toDocumentMarkerDescription()
64 return static_cast<DocumentMarkerDescription*>(details); in toDocumentMarkerDescription()
112 , m_details(description.isEmpty() ? nullptr : DocumentMarkerDescription::create(description)) in DocumentMarker()
157 if (DocumentMarkerDescription* details = toDocumentMarkerDescription(m_details.get())) in description()