summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-30 17:39:49 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-30 17:39:49 +0000
commit0511f754d097c08a28cda59f6d986a7e162fcd16 (patch)
treeadd64b25af710c619ed28232f8389e6acea0a3a5 /chrome
parent48b0c73db08d6ddcde41014a23368ec70d6bb7e7 (diff)
downloadchromium_src-0511f754d097c08a28cda59f6d986a7e162fcd16.zip
chromium_src-0511f754d097c08a28cda59f6d986a7e162fcd16.tar.gz
chromium_src-0511f754d097c08a28cda59f6d986a7e162fcd16.tar.bz2
Based on empirical data, push chrome.dll's base address forward.
Since the meat of our code is in a DLL, which is loaded dynamically, parts of the address space are already occupied. Having our DLL rebased from its preferred address means processing relocations, slower startup time, and less effective memory sharing. We don't have enough information to decide on the best address, but hopefully this will be better than what we currently use. Review URL: http://codereview.chromium.org/49051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/app/chrome_dll.vsprops2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/chrome_dll.vsprops b/chrome/app/chrome_dll.vsprops
index a3668d3..be5bb84 100644
--- a/chrome/app/chrome_dll.vsprops
+++ b/chrome/app/chrome_dll.vsprops
@@ -13,6 +13,6 @@
Name="VCLinkerTool"
DelayLoadDLLs="crypt32.dll;cryptui.dll;winhttp.dll;wininet.dll;wsock32.dll;winspool.drv;comdlg32.dll;imagehlp.dll;psapi.dll;urlmon.dll;imm32.dll"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
- BaseAddress="0x01000000"
+ BaseAddress="0x01c30000"
/>
</VisualStudioPropertySheet>