Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / filters / FilterOperationsTest.cpp
index 93bcf28..e0aba19 100644 (file)
@@ -28,7 +28,6 @@
 
 #include <gtest/gtest.h>
 
-using namespace WebCore;
 using namespace blink;
 
 namespace {
@@ -36,7 +35,7 @@ namespace {
 TEST(FilterOperationsTest, getOutsetsBlur)
 {
     FilterOperations ops;
-    ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed)));
+    ops.operations().append(BlurFilterOperation::create(Length(20.0, Fixed)));
     EXPECT_TRUE(ops.hasOutsets());
     FilterOutsets outsets = ops.outsets();
     EXPECT_EQ(57, outsets.top());