summaryrefslogtreecommitdiffstats
path: root/chrome/gpu/gpu_view_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/gpu/gpu_view_win.cc')
-rw-r--r--chrome/gpu/gpu_view_win.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/chrome/gpu/gpu_view_win.cc b/chrome/gpu/gpu_view_win.cc
index e94c695..e6233a6 100644
--- a/chrome/gpu/gpu_view_win.cc
+++ b/chrome/gpu/gpu_view_win.cc
@@ -129,30 +129,3 @@ void GpuViewWin::OnPaint(HDC unused_dc) {
DrawBackground(paint_dc.m_ps.rcPaint, &paint_dc);
}
}
-
-LRESULT GpuViewWin::OnMouseEvent(UINT message,
- WPARAM wparam,
- LPARAM lparam,
- BOOL& handled) {
- handled = true;
- ::PostMessage(GetParent(), message, wparam, lparam);
- return 0;
-}
-
-LRESULT GpuViewWin::OnKeyEvent(UINT message,
- WPARAM wparam,
- LPARAM lparam,
- BOOL& handled) {
- handled = true;
- ::PostMessage(GetParent(), message, wparam, lparam);
- return 0;
-}
-
-LRESULT GpuViewWin::OnWheelEvent(UINT message,
- WPARAM wparam,
- LPARAM lparam,
- BOOL& handled) {
- handled = true;
- ::PostMessage(GetParent(), message, wparam, lparam);
- return 0;
-}