summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-04 20:16:57 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-04 20:16:57 +0000
commit4f5025c94935842bbbe68131de009dc63dd8fb3f (patch)
treea681fb2a6d7ff4a9833c266e83522ce1974b2cd0 /webkit/port
parent301415ea99531af12cf34568c908fdbdd128bcda (diff)
downloadchromium_src-4f5025c94935842bbbe68131de009dc63dd8fb3f.zip
chromium_src-4f5025c94935842bbbe68131de009dc63dd8fb3f.tar.gz
chromium_src-4f5025c94935842bbbe68131de009dc63dd8fb3f.tar.bz2
Changes to pending to get WebCore to compile on linux. This
doesn't enable it yet since there are more changes to WebKit that we need from the merge. Once the merge lands, pending will probably be clobbered, so this is temporary to allow us to keep moving forward. Go ahead and switch from PLATFORM_CHROME to PLATFORM_CHROMIUM and try to change all the places in the mac code. This change includes bits from http://codereview.chromium.org/228 which is by Seo Sanghyeon. Everything still compiles on Windows. Review URL: http://codereview.chromium.org/1201 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1725 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/page/EventHandlerMac.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/port/page/EventHandlerMac.mm b/webkit/port/page/EventHandlerMac.mm
index 21b394f..51abdd1 100644
--- a/webkit/port/page/EventHandlerMac.mm
+++ b/webkit/port/page/EventHandlerMac.mm
@@ -187,7 +187,7 @@ void EventHandler::focusDocumentView()
Page* page = m_frame->page();
if (!page)
return;
-#if !PLATFORM(CHROME)
+#if !PLATFORM(CHROMIUM)
if (FrameView* frameView = m_frame->view())
if (NSView *documentView = frameView->getDocumentView())
page->chrome()->focusNSView(documentView);