| Index: Source/web/WebColorSuggestion.cpp
|
| diff --git a/Source/web/WebColorSuggestion.cpp b/Source/web/WebColorSuggestion.cpp
|
| index dd55d6bd88acaf855c9c659dd0263bd70d889aa0..7d1bfaf7e0c3b1a003fe26faae04185a070ec8ae 100644
|
| --- a/Source/web/WebColorSuggestion.cpp
|
| +++ b/Source/web/WebColorSuggestion.cpp
|
| @@ -37,13 +37,13 @@
|
|
|
| namespace blink {
|
|
|
| -WebColorSuggestion::WebColorSuggestion(const blink::ColorSuggestion& suggestion)
|
| +WebColorSuggestion::WebColorSuggestion(const ColorSuggestion& suggestion)
|
| : color(static_cast<WebColor>(suggestion.color.rgb()))
|
| , label(suggestion.label)
|
| {
|
| }
|
|
|
| -WebColorSuggestion& WebColorSuggestion::operator=(const blink::ColorSuggestion& suggestion)
|
| +WebColorSuggestion& WebColorSuggestion::operator=(const ColorSuggestion& suggestion)
|
| {
|
| color = static_cast<WebColor>(suggestion.color.rgb());
|
| label = suggestion.label;
|
|
|