Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: content/renderer/render_widget.cc

Issue 8970016: refactoring mouse lock to support pepper and WebKit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 //}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698