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

Unified Diff: Source/web/CompositionUnderlineBuilder.h

Issue 474183002: Cleanup namespace usage in Source/web/*.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/ColorChooserUIController.h ('k') | Source/web/CompositionUnderlineVectorBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/CompositionUnderlineBuilder.h
diff --git a/Source/web/CompositionUnderlineBuilder.h b/Source/web/CompositionUnderlineBuilder.h
index a5694ae4a158660c22f7a152a30ddfbcb825034b..1b39d7a4d3d3528c2911680a6db73d66c038e899 100644
--- a/Source/web/CompositionUnderlineBuilder.h
+++ b/Source/web/CompositionUnderlineBuilder.h
@@ -38,14 +38,14 @@
namespace blink {
// This class is used for converting from WebCompositionUnderline to
-// blink::CompositionUnderline.
+// CompositionUnderline.
-class CompositionUnderlineBuilder : public blink::CompositionUnderline {
+class CompositionUnderlineBuilder : public CompositionUnderline {
public:
CompositionUnderlineBuilder(const WebCompositionUnderline& u)
- : blink::CompositionUnderline(u.startOffset, u.endOffset,
- blink::Color(u.color), u.thick,
- blink::Color(u.backgroundColor)) { }
+ : CompositionUnderline(u.startOffset, u.endOffset,
+ Color(u.color), u.thick,
+ Color(u.backgroundColor)) { }
};
} // namespace blink
« no previous file with comments | « Source/web/ColorChooserUIController.h ('k') | Source/web/CompositionUnderlineVectorBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698