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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h

Issue 2399723002: Reflow comments in //third_party/WebKit/Sourcecore/editing/markers (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
index 6f78a818f7183fea3f2b4fb57516e433a5ea7e4b..06f90d4a9d9b801d5c207d81a848d0a6d113e0ad 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
@@ -33,10 +33,11 @@ namespace blink {
class DocumentMarkerDetails;
-// A range of a node within a document that is "marked", such as the range of a misspelled word.
-// It optionally includes a description that could be displayed in the user interface.
-// It also optionally includes a flag specifying whether the match is active, which is ignored
-// for all types other than type TextMatch.
+// A range of a node within a document that is "marked", such as the range of a
+// misspelled word. It optionally includes a description that could be displayed
+// in the user interface. It also optionally includes a flag specifying whether
+// the match is active, which is ignored for all types other than type
+// TextMatch.
class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
public:
enum MarkerTypeIndex {
@@ -58,7 +59,8 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
class MarkerTypes {
public:
- // The constructor is intentionally implicit to allow conversion from the bit-wise sum of above types
+ // The constructor is intentionally implicit to allow conversion from the
+ // bit-wise sum of above types
MarkerTypes(unsigned mask) : m_mask(mask) {}
bool contains(MarkerType type) const { return m_mask & type; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698