OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/render_widget.h" | 5 #include "content/renderer/render_widget.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 1477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1488 } | 1488 } |
1489 } | 1489 } |
1490 | 1490 |
1491 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { | 1491 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { |
1492 return false; | 1492 return false; |
1493 } | 1493 } |
1494 | 1494 |
1495 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { | 1495 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { |
1496 return false; | 1496 return false; |
1497 } | 1497 } |
| 1498 |
| 1499 //bool RenderWidget::isPointerLocked() const { |
| 1500 // NOTREACHED(); // Implemented in Render View Impl only at this time. |
| 1501 // return false; |
| 1502 //} |
OLD | NEW |