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

Unified Diff: content/public/test/browser_test_utils.cc

Issue 2915613004: [PointerLock] Move "silent mouse lock" logic from renderer to RWHI (Closed)
Patch Set: jochen's comment: Remove 'const' before local bool Created 3 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/browser_test_utils.h ('k') | content/renderer/mouse_lock_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/browser_test_utils.cc
diff --git a/content/public/test/browser_test_utils.cc b/content/public/test/browser_test_utils.cc
index 35c79b06681701d48004462b0de9ec758776e8e3..ec91284fda82f772e28cf9f8769ecf2e129d3a40 100644
--- a/content/public/test/browser_test_utils.cc
+++ b/content/public/test/browser_test_utils.cc
@@ -2048,12 +2048,10 @@ void PwnMessageHelper::FileSystemWrite(RenderProcessHost* process,
void PwnMessageHelper::LockMouse(RenderProcessHost* process,
int routing_id,
bool user_gesture,
- bool last_unlocked_by_target,
bool privileged) {
IPC::IpcSecurityTestUtil::PwnMessageReceived(
process->GetChannel(),
- ViewHostMsg_LockMouse(routing_id, user_gesture, last_unlocked_by_target,
- privileged));
+ ViewHostMsg_LockMouse(routing_id, user_gesture, privileged));
}
#if defined(USE_AURA)
« no previous file with comments | « content/public/test/browser_test_utils.h ('k') | content/renderer/mouse_lock_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698