Skip to content

Commit

Permalink
Merge r220528 - Try to fix windows build.
Browse files Browse the repository at this point in the history
* style/StyleUpdate.h:
(WebCore::Style::TextUpdate::TextUpdate):
  • Loading branch information
anttijk authored and carlosgcampos committed Aug 14, 2017
1 parent 079d3ce commit 5bd435f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,10 @@
2017-08-10 Antti Koivisto <antti@apple.com>

Try to fix windows build.

* style/StyleUpdate.h:
(WebCore::Style::TextUpdate::TextUpdate):

2017-08-10 Carlos Garcia Campos <cgarcia@igalia.com>

[GTK] Crashes in WebCore::PasteboardHelper::fillSelectionData when source file of drag is unavailable
Expand Down
6 changes: 6 additions & 0 deletions Source/WebCore/style/StyleUpdate.h
Expand Up @@ -55,6 +55,12 @@ struct ElementUpdate {
};

struct TextUpdate {
TextUpdate() = default;
TextUpdate(unsigned offset, unsigned length)
: offset(offset)
, length(length)
{ }

unsigned offset { 0 };
unsigned length { std::numeric_limits<unsigned>::max() };
};
Expand Down

0 comments on commit 5bd435f

Please sign in to comment.