Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Unified Diff: Source/core/dom/DocumentMarker.cpp

Issue 928103002: Remove some unused functions in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: git cl try Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/DocumentMarker.h ('k') | Source/core/dom/DocumentMarkerController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentMarker.cpp
diff --git a/Source/core/dom/DocumentMarker.cpp b/Source/core/dom/DocumentMarker.cpp
index fd99b12e103b1f927747fcfac6962438daba5922..eb7398eea20e7470116f60655230375d16a42e25 100644
--- a/Source/core/dom/DocumentMarker.cpp
+++ b/Source/core/dom/DocumentMarker.cpp
@@ -96,15 +96,6 @@ inline DocumentMarkerTextMatch* toDocumentMarkerTextMatch(DocumentMarkerDetails*
return 0;
}
-
-DocumentMarker::DocumentMarker()
- : m_type(Spelling)
- , m_startOffset(0)
- , m_endOffset(0)
- , m_hash(0)
-{
-}
-
DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash)
: m_type(type)
, m_startOffset(startOffset)
@@ -123,15 +114,6 @@ DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool ac
{
}
-DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtrWillBeRawPtr<DocumentMarkerDetails> details)
- : m_type(type)
- , m_startOffset(startOffset)
- , m_endOffset(endOffset)
- , m_details(details)
- , m_hash(0)
-{
-}
-
DocumentMarker::DocumentMarker(const DocumentMarker& marker)
: m_type(marker.type())
, m_startOffset(marker.startOffset())
« no previous file with comments | « Source/core/dom/DocumentMarker.h ('k') | Source/core/dom/DocumentMarkerController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698