diff options
-rw-r--r-- | webkit/port/page/Location.h | 2 | ||||
-rw-r--r-- | webkit/port/platform/graphics/FontPlatformData.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/port/page/Location.h b/webkit/port/page/Location.h index 7bea03e..a6fa362 100644 --- a/webkit/port/page/Location.h +++ b/webkit/port/page/Location.h @@ -13,7 +13,7 @@ namespace WebCore { class Location : public RefCounted<Location> { public: - Location::Location(Frame* frame) : m_frame(frame) { } + Location(Frame* frame) : m_frame(frame) { } Frame* frame() { return m_frame; } diff --git a/webkit/port/platform/graphics/FontPlatformData.h b/webkit/port/platform/graphics/FontPlatformData.h index 61d45ac..ff0d863 100644 --- a/webkit/port/platform/graphics/FontPlatformData.h +++ b/webkit/port/platform/graphics/FontPlatformData.h @@ -25,7 +25,7 @@ #define FontPlatformData_H #include "StringImpl.h" -#include <wtf/Refcounted.h> +#include <wtf/RefCounted.h> typedef struct HFONT__ *HFONT; |