summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/views/frame/browser_frame_win.cc2
-rw-r--r--chrome/browser/views/frame/browser_frame_win.h2
-rw-r--r--views/widget/widget_win.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/frame/browser_frame_win.cc b/chrome/browser/views/frame/browser_frame_win.cc
index 343def5..9e31dba 100644
--- a/chrome/browser/views/frame/browser_frame_win.cc
+++ b/chrome/browser/views/frame/browser_frame_win.cc
@@ -171,7 +171,7 @@ void BrowserFrameWin::OnMove(const CPoint& point) {
browser_view_->WindowMoved();
}
-void BrowserFrameWin::OnMoving(UINT param, const RECT* new_bounds) {
+void BrowserFrameWin::OnMoving(UINT param, LPRECT new_bounds) {
browser_view_->WindowMoved();
}
diff --git a/chrome/browser/views/frame/browser_frame_win.h b/chrome/browser/views/frame/browser_frame_win.h
index 5ad12a4..a4f7fe4 100644
--- a/chrome/browser/views/frame/browser_frame_win.h
+++ b/chrome/browser/views/frame/browser_frame_win.h
@@ -61,7 +61,7 @@ class BrowserFrameWin : public BrowserFrame, public views::WindowWin {
UINT hittest_code,
UINT message);
virtual void OnMove(const CPoint& point);
- virtual void OnMoving(UINT param, const RECT* new_bounds);
+ virtual void OnMoving(UINT param, LPRECT new_bounds);
virtual LRESULT OnNCActivate(BOOL active);
virtual LRESULT OnNCCalcSize(BOOL mode, LPARAM l_param);
virtual LRESULT OnNCHitTest(const CPoint& pt);
diff --git a/views/widget/widget_win.h b/views/widget/widget_win.h
index 787281d..cea4a64 100644
--- a/views/widget/widget_win.h
+++ b/views/widget/widget_win.h
@@ -373,7 +373,7 @@ class WidgetWin : public base::WindowImpl,
virtual LRESULT OnMouseLeave(UINT message, WPARAM w_param, LPARAM l_param);
virtual LRESULT OnMouseWheel(UINT message, WPARAM w_param, LPARAM l_param);
virtual void OnMove(const CPoint& point) { SetMsgHandled(FALSE); }
- virtual void OnMoving(UINT param, const LPRECT new_bounds) { }
+ virtual void OnMoving(UINT param, LPRECT new_bounds) { }
virtual LRESULT OnMouseRange(UINT msg, WPARAM w_param, LPARAM l_param);
virtual LRESULT OnNCActivate(BOOL active) { SetMsgHandled(FALSE); return 0; }
virtual LRESULT OnNCCalcSize(BOOL w_param, LPARAM l_param) {