summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h')
-rw-r--r--chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h b/chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h
index a20acbe5463..ba18f114c6f 100644
--- a/chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h
+++ b/chromium/third_party/blink/renderer/core/svg/svg_path_string_source.h
@@ -36,7 +36,7 @@ class CORE_EXPORT SVGPathStringSource {
explicit SVGPathStringSource(const String&);
bool HasMoreData() const {
- if (is8_bit_source_)
+ if (is_8bit_source_)
return current_.character8_ < end_.character8_;
return current_.character16_ < end_.character16_;
}
@@ -50,7 +50,7 @@ class CORE_EXPORT SVGPathStringSource {
bool ParseArcFlagWithError();
void SetErrorMark(SVGParseStatus);
- bool is8_bit_source_;
+ bool is_8bit_source_;
union {
const LChar* character8_;