Chromium Code Reviews| Index: content/browser/renderer_host/render_view_host_delegate.h |
| diff --git a/content/browser/renderer_host/render_view_host_delegate.h b/content/browser/renderer_host/render_view_host_delegate.h |
| index bfb664a78992ba234d175712ce91a5a98475d926..0d5984faf54dfe07fc41d4d9cccacbd38ac4a73e 100644 |
| --- a/content/browser/renderer_host/render_view_host_delegate.h |
| +++ b/content/browser/renderer_host/render_view_host_delegate.h |
| @@ -327,7 +327,9 @@ class CONTENT_EXPORT RenderViewHostDelegate : public IPC::Channel::Listener { |
| // Requests to lock the mouse. Once the request is approved or rejected, |
| // GotResponseToLockMouseRequest() will be called on the requesting render |
| // view host. |
| - virtual void RequestToLockMouse(bool user_gesture) {} |
| + virtual void RequestToLockMouse(bool user_gesture, |
| + bool last_unlocked_by_target) { |
| + } |
|
jam
2012/05/31 06:05:23
nit: follow the same style in this class and put t
dmurph
2012/05/31 21:13:49
Done.
|
| // Notification that the view has lost the mouse lock. |
| virtual void LostMouseLock() {} |