summaryrefslogtreecommitdiffstats
path: root/chrome/views
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 21:01:08 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 21:01:08 +0000
commitdca1225fff9f64a2886da568e1786bbb55931ef6 (patch)
treec4759f054dc9db2bdfaa61bed26682f8ffbaf6d6 /chrome/views
parent175b5434de49355990a63519dd0ed8782b01ad27 (diff)
downloadchromium_src-dca1225fff9f64a2886da568e1786bbb55931ef6.zip
chromium_src-dca1225fff9f64a2886da568e1786bbb55931ef6.tar.gz
chromium_src-dca1225fff9f64a2886da568e1786bbb55931ef6.tar.bz2
Uncomment out these two lines I commented out a few weeks ago so that the trunk is usable again.
TBR=sky Review URL: http://codereview.chromium.org/10655 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5294 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views')
-rw-r--r--chrome/views/custom_frame_window.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/views/custom_frame_window.cc b/chrome/views/custom_frame_window.cc
index 79e2793..3221e76 100644
--- a/chrome/views/custom_frame_window.cc
+++ b/chrome/views/custom_frame_window.cc
@@ -1339,17 +1339,13 @@ 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;
}