diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-16 15:58:44 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-16 15:58:44 +0000 |
commit | 0a834f0fcc61d47efbeebad65c050c26afbf477c (patch) | |
tree | 3a8e1452125487ae6eebb3452fd23bb0d88726c3 /webkit | |
parent | ad59ef3d47e885120966b07ebaef96440ef1ec3d (diff) | |
download | chromium_src-0a834f0fcc61d47efbeebad65c050c26afbf477c.zip chromium_src-0a834f0fcc61d47efbeebad65c050c26afbf477c.tar.gz chromium_src-0a834f0fcc61d47efbeebad65c050c26afbf477c.tar.bz2 |
Fix the Mac build; we can't pull that one line until it's fixed all the way down the WebCore chain.
TBR
Review URL: http://codereview.chromium.org/2893
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2262 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/webframeloaderclient_impl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webkit/glue/webframeloaderclient_impl.h b/webkit/glue/webframeloaderclient_impl.h index aa0acff..932ccdf 100644 --- a/webkit/glue/webframeloaderclient_impl.h +++ b/webkit/glue/webframeloaderclient_impl.h @@ -199,7 +199,10 @@ class WebFrameLoaderClient : public WebCore::FrameLoaderClient { virtual void unloadListenerChanged(); -#if defined(__APPLE__) && !defined(BUILDING_CHROMIUM__) +#if defined(__APPLE__) +// The above should have && !defined(BUILDING_CHROMIUM__) at the end but can't +// for now, since we need to add that extra define all the way down to the +// WebCore core. TODO(avi): Get that define into WebCore. virtual NSCachedURLResponse* willCacheResponse(WebCore::DocumentLoader*, unsigned long identifier, NSCachedURLResponse*) const; |