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

Unified Diff: Source/platform/graphics/filters/FilterOperationsTest.cpp

Issue 464273002: Cleanup namespace usage in platform/graphics/[filters/* to skia/*] and platform/graphics/[B-D]* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/platform/graphics/filters/FETurbulence.cpp ('k') | Source/platform/graphics/filters/ParallelJobs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/FilterOperationsTest.cpp
diff --git a/Source/platform/graphics/filters/FilterOperationsTest.cpp b/Source/platform/graphics/filters/FilterOperationsTest.cpp
index 3ff49c9566e42fe29890b73623665cbfbb5498cd..e0aba19d47b3c7c53fde1c1c61b3a514bd32b651 100644
--- a/Source/platform/graphics/filters/FilterOperationsTest.cpp
+++ b/Source/platform/graphics/filters/FilterOperationsTest.cpp
@@ -29,14 +29,13 @@
#include <gtest/gtest.h>
using namespace blink;
-using namespace blink;
namespace {
TEST(FilterOperationsTest, getOutsetsBlur)
{
FilterOperations ops;
- ops.operations().append(BlurFilterOperation::create(Length(20.0, blink::Fixed)));
+ ops.operations().append(BlurFilterOperation::create(Length(20.0, Fixed)));
EXPECT_TRUE(ops.hasOutsets());
FilterOutsets outsets = ops.outsets();
EXPECT_EQ(57, outsets.top());
« no previous file with comments | « Source/platform/graphics/filters/FETurbulence.cpp ('k') | Source/platform/graphics/filters/ParallelJobs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698