Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / LengthBox.h
index abe7609..74c45fb 100644 (file)
@@ -27,9 +27,7 @@
 #include "platform/text/TextDirection.h"
 #include "platform/text/WritingMode.h"
 
-namespace WebCore {
-
-class RenderStyle;
+namespace blink {
 
 class PLATFORM_EXPORT LengthBox {
 public:
@@ -53,7 +51,7 @@ public:
     {
     }
 
-    LengthBox(Length t, Length r, Length b, Length l)
+    LengthBox(const Length& t, const Length& r, const Length& b, const Length& l)
         : m_left(l)
         , m_right(r)
         , m_top(t)
@@ -104,6 +102,6 @@ public:
     Length m_bottom;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // LengthBox_h