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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGParsingError.h

Issue 1644293003: Error reporting for SVGInteger and SVGIntegerOptionalInteger (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TestExpectations; Drop redundant test. Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
3 * Copyright (C) 2011 Apple, Inc. All rights reserved. 3 * Copyright (C) 2011 Apple, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 24 matching lines...) Expand all
35 class QualifiedName; 35 class QualifiedName;
36 36
37 enum class SVGParseStatus { 37 enum class SVGParseStatus {
38 NoError, 38 NoError,
39 39
40 // Syntax errors 40 // Syntax errors
41 TrailingGarbage, 41 TrailingGarbage,
42 ExpectedArcFlag, 42 ExpectedArcFlag,
43 ExpectedBoolean, 43 ExpectedBoolean,
44 ExpectedEnumeration, 44 ExpectedEnumeration,
45 ExpectedInteger,
45 ExpectedLength, 46 ExpectedLength,
46 ExpectedMoveToCommand, 47 ExpectedMoveToCommand,
47 ExpectedNumber, 48 ExpectedNumber,
48 ExpectedPathCommand, 49 ExpectedPathCommand,
49 50
50 // Semantic errors 51 // Semantic errors
51 NegativeValue, 52 NegativeValue,
52 ZeroValue, 53 ZeroValue,
53 54
54 // Generic error 55 // Generic error
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 98
98 inline bool operator==(const SVGParsingError& error, SVGParseStatus status) 99 inline bool operator==(const SVGParsingError& error, SVGParseStatus status)
99 { 100 {
100 return error.status() == status; 101 return error.status() == status;
101 } 102 }
102 inline bool operator!=(const SVGParsingError& error, SVGParseStatus status) { re turn !(error == status); } 103 inline bool operator!=(const SVGParsingError& error, SVGParseStatus status) { re turn !(error == status); }
103 104
104 } // namespace blink 105 } // namespace blink
105 106
106 #endif // SVGParsingError_h 107 #endif // SVGParsingError_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698