diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 22:29:28 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 22:29:28 +0000 |
commit | 95bc59cec14e12ffd092344ffa576bedc6521058 (patch) | |
tree | c83ed979e5abdd6ac28c374b9fa0f54ebfaafca4 /base/process_util.h | |
parent | 5a442809a196d7347c8a926f17be53b27e239d40 (diff) | |
download | chromium_src-95bc59cec14e12ffd092344ffa576bedc6521058.zip chromium_src-95bc59cec14e12ffd092344ffa576bedc6521058.tar.gz chromium_src-95bc59cec14e12ffd092344ffa576bedc6521058.tar.bz2 |
Reverting r133134 - Make sure that base::MessagePumpForUI from different modules are isolated from each other and add protection from shatter attacks by placing |this| pointer to the used data associated with the message-only window (instead of blindly trusting the value of WPARAM).
We suspect that r133134 might be causing issues like 124091, so it needs to be reworked.
BUG=124091,127933
TBR=alexeypa@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10384209
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137542 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/process_util.h b/base/process_util.h index 15d6b68..074312b 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -146,8 +146,7 @@ BASE_EXPORT ProcessId GetCurrentProcId(); BASE_EXPORT ProcessHandle GetCurrentProcessHandle(); #if defined(OS_WIN) -// Returns the module handle to which an address belongs. The reference counter -// of the module is not incremented. +// Returns the module handle to which an address belongs. BASE_EXPORT HMODULE GetModuleFromAddress(void* address); #endif |