summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 00:25:12 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 00:25:12 +0000
commitc524bb701a63cb64d4970fb239ad2e9aef5e2e08 (patch)
tree6e512bb7701d05ee103d08e4f38d5244fd89faa2
parentd764755c9527fc2f33acfcf8f897cdc2fde693f9 (diff)
downloadchromium_src-c524bb701a63cb64d4970fb239ad2e9aef5e2e08.zip
chromium_src-c524bb701a63cb64d4970fb239ad2e9aef5e2e08.tar.gz
chromium_src-c524bb701a63cb64d4970fb239ad2e9aef5e2e08.tar.bz2
Compile WidgetChromium on Linux.
Review URL: http://codereview.chromium.org/8042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3709 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/SConscript.port1
-rw-r--r--webkit/port/platform/chromium/WidgetChromium.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port
index a6ac87b..ae043d0 100644
--- a/webkit/SConscript.port
+++ b/webkit/SConscript.port
@@ -120,7 +120,6 @@ if env['PLATFORM'] == 'posix':
'$PORT_DIR/platform/chromium/DragDataChromium.cpp',
'$PORT_DIR/platform/chromium/PlatformScrollBarChromium.cpp',
'$PORT_DIR/platform/chromium/PopupMenuChromium.cpp',
- '$PORT_DIR/platform/chromium/WidgetChromium.cpp',
'$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp',
'$PORT_DIR/platform/graphics/ImageSkia.cpp',
]
diff --git a/webkit/port/platform/chromium/WidgetChromium.cpp b/webkit/port/platform/chromium/WidgetChromium.cpp
index abd6b02..a36cb2c 100644
--- a/webkit/port/platform/chromium/WidgetChromium.cpp
+++ b/webkit/port/platform/chromium/WidgetChromium.cpp
@@ -63,12 +63,12 @@ Widget::~Widget()
delete data;
}
-void Widget::setContainingWindow(HWND containingWindow)
+void Widget::setContainingWindow(PlatformWidget containingWindow)
{
ASSERT_NOT_REACHED();
}
-HWND Widget::containingWindow() const
+PlatformWidget Widget::containingWindow() const
{
if (!data->client)
return NULL;