diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-23 19:09:05 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-23 19:09:05 +0000 |
commit | 27d245a415055f94ea53db2b0451847dd41a567e (patch) | |
tree | beb1dcd6a98ec7701556e6de2565d30176e4738d /chrome | |
parent | 61e408ad7a23b803cdc000d381afe51c0f3149bb (diff) | |
download | chromium_src-27d245a415055f94ea53db2b0451847dd41a567e.zip chromium_src-27d245a415055f94ea53db2b0451847dd41a567e.tar.gz chromium_src-27d245a415055f94ea53db2b0451847dd41a567e.tar.bz2 |
test something else to fix dist crashes
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3835 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/views/custom_frame_window.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/views/custom_frame_window.cc b/chrome/views/custom_frame_window.cc index 3221e76..79e2793 100644 --- a/chrome/views/custom_frame_window.cc +++ b/chrome/views/custom_frame_window.cc @@ -1339,13 +1339,17 @@ void CustomFrameWindow::InitClass() { void CustomFrameWindow::LockUpdates() { lock_updates_ = true; + /* // This message causes invalidations to be discarded until it is called again // with WPARAM TRUE (see UnlockUpdates). SendMessage(GetHWND(), WM_SETREDRAW, FALSE, 0); + */ } void CustomFrameWindow::UnlockUpdates() { + /* SendMessage(GetHWND(), WM_SETREDRAW, TRUE, 0); + */ lock_updates_ = false; } |