diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 16:41:47 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 16:41:47 +0000 |
commit | 2e5257e256f24e009fd5a0c20ad0730a33da7f65 (patch) | |
tree | 1eaa3f0c08e3a05dc2ef46a8ba05040e31d3fdef /base/win | |
parent | 6093d7478e0889fc079b7dd8fb840e9786e8e9cc (diff) | |
download | chromium_src-2e5257e256f24e009fd5a0c20ad0730a33da7f65.zip chromium_src-2e5257e256f24e009fd5a0c20ad0730a33da7f65.tar.gz chromium_src-2e5257e256f24e009fd5a0c20ad0730a33da7f65.tar.bz2 |
Remove some views depenencies from RenderWidgetHostViewWin.
Review URL: http://codereview.chromium.org/7753021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98431 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r-- | base/win/win_util.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/base/win/win_util.h b/base/win/win_util.h index 136a1ff..2227dfd 100644 --- a/base/win/win_util.h +++ b/base/win/win_util.h @@ -37,6 +37,14 @@ typedef _tagpropertykey PROPERTYKEY; namespace base { namespace win { +// A Windows message reflected from other windows. This message is sent +// with the following arguments: +// hWnd - Target window +// uMsg - kReflectedMessage +// wParam - Should be 0 +// lParam - Pointer to MSG struct containing the original message. +const int kReflectedMessage = WM_APP + 3; + BASE_EXPORT void GetNonClientMetrics(NONCLIENTMETRICS* metrics); // Returns the string representing the current user sid. |