Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / DateComponents.h
index 23fcff0..efd8fd0 100644 (file)
@@ -36,7 +36,7 @@
 #include "wtf/Forward.h"
 #include "wtf/unicode/Unicode.h"
 
-namespace WebCore {
+namespace blink {
 
 // A DateComponents instance represents one of the following date and time combinations:
 // * Month type: year-month
@@ -74,6 +74,7 @@ public:
     int minute() const { return m_minute; }
     int hour() const { return m_hour; }
     int monthDay() const { return m_monthDay; }
+    int weekDay() const;
     int month() const { return m_month; }
     int fullYear() const { return m_year; }
     int week() const { return m_week; }
@@ -209,6 +210,6 @@ private:
 };
 
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // DateComponents_h