summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-04 18:18:17 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-04 18:18:17 +0000
commit7e101ed95c637df75d1f7bb27a18c5a66ed538f0 (patch)
treefcdfef75466599bcd4ed59388db2328d773c6754 /webkit/port
parenta0450d99639727ee41ea036bcde09a61d790735a (diff)
downloadchromium_src-7e101ed95c637df75d1f7bb27a18c5a66ed538f0.zip
chromium_src-7e101ed95c637df75d1f7bb27a18c5a66ed538f0.tar.gz
chromium_src-7e101ed95c637df75d1f7bb27a18c5a66ed538f0.tar.bz2
Changes to webkit/port to build via gcc on linux/mac.
This is part of the change on issue 228, I'm just breaking it up into pieces to make it easier merge with. http://codereview.chromium.org/228 Review URL: http://codereview.chromium.org/437 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1721 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/page/Location.h2
-rw-r--r--webkit/port/platform/graphics/FontPlatformData.h2
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;