diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-10 00:35:01 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-10 00:35:01 +0000 |
commit | 3a7c3e449f5c3963ae6f7afad879908e93ee2f2f (patch) | |
tree | 2ba55e3c0d577f3774bbf608e5286f560b0d8187 | |
parent | df75cfde651ad088c4149ce03c408080a1f39d77 (diff) | |
download | chromium_src-3a7c3e449f5c3963ae6f7afad879908e93ee2f2f.zip chromium_src-3a7c3e449f5c3963ae6f7afad879908e93ee2f2f.tar.gz chromium_src-3a7c3e449f5c3963ae6f7afad879908e93ee2f2f.tar.bz2 |
Make more code compile.
Review URL: http://codereview.chromium.org/7042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3162 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/SConscript.port | 7 | ||||
-rw-r--r-- | webkit/pending/DNS.h | 2 | ||||
-rw-r--r-- | webkit/port/platform/network/DNS.cpp | 2 |
3 files changed, 2 insertions, 9 deletions
diff --git a/webkit/SConscript.port b/webkit/SConscript.port index 36a93fc..b3df118 100644 --- a/webkit/SConscript.port +++ b/webkit/SConscript.port @@ -96,12 +96,7 @@ if env['PLATFORM'] in ('posix', 'darwin'): # Remove from the list files that haven't yet been made portable # to Mac and Linux. remove_files = [ - '$PORT_DIR/page/Console.cpp', - '$PORT_DIR/page/Location.cpp', - '$PORT_DIR/page/Navigator.cpp', '$PORT_DIR/platform/BString.cpp', - '$PORT_DIR/platform/FramelessScrollView.cpp', - '$PORT_DIR/platform/GKURL.cpp', '$PORT_DIR/platform/UniscribeStateTextRun.cpp', '$PORT_DIR/platform/WCDataObject.cpp', '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp', @@ -111,8 +106,6 @@ if env['PLATFORM'] in ('posix', 'darwin'): '$PORT_DIR/platform/graphics/PlatformContextSkia.cpp', '$PORT_DIR/platform/graphics/SkiaUtils.cpp', '$PORT_DIR/platform/graphics/SkGraphicsContext.cpp', - '$PORT_DIR/platform/network/AuthenticationChallenge.cpp', - '$PORT_DIR/platform/network/DNS.cpp', '$PORT_DIR/plugins/PluginDataChromium.cpp', ] for remove in remove_files: diff --git a/webkit/pending/DNS.h b/webkit/pending/DNS.h index f5adf80..3a32ce7 100644 --- a/webkit/pending/DNS.h +++ b/webkit/pending/DNS.h @@ -33,4 +33,4 @@ namespace WebCore { void prefetchDNS(const String& hostname);
}
-#endif
\ No newline at end of file +#endif
diff --git a/webkit/port/platform/network/DNS.cpp b/webkit/port/platform/network/DNS.cpp index a11d236..2044742 100644 --- a/webkit/port/platform/network/DNS.cpp +++ b/webkit/port/platform/network/DNS.cpp @@ -36,4 +36,4 @@ void prefetchDNS(const String& hostname) webkit_glue::PrefetchDns(webkit_glue::StringToStdString(hostname)); } -}
\ No newline at end of file +} |