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

Unified Diff: Source/web/WebColorSuggestion.cpp

Issue 468083003: Cleanup namespace usage in Source/web/Web[A-H]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Created 6 years, 4 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 | « Source/web/WebColorName.cpp ('k') | Source/web/WebCryptoNormalize.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/web/WebColorName.cpp ('k') | Source/web/WebCryptoNormalize.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698