| Index: chrome/browser/ui/exclusive_access/fullscreen_controller_test.cc
|
| diff --git a/chrome/browser/ui/exclusive_access/fullscreen_controller_test.cc b/chrome/browser/ui/exclusive_access/fullscreen_controller_test.cc
|
| index 1cf46886aefd97e3f293d3ec9f203da1d57c0cee..edc6c0b8c503d1e40ab0ccd41c0046e87f7caa89 100644
|
| --- a/chrome/browser/ui/exclusive_access/fullscreen_controller_test.cc
|
| +++ b/chrome/browser/ui/exclusive_access/fullscreen_controller_test.cc
|
| @@ -25,8 +25,12 @@ void FullscreenControllerTest::RequestToLockMouse(
|
| bool user_gesture,
|
| bool last_unlocked_by_target) {
|
| WebContents* tab = browser()->tab_strip_model()->GetActiveWebContents();
|
| + MouseLockController* mouse_lock_controller =
|
| + GetExclusiveAccessManager()->mouse_lock_controller();
|
| + mouse_lock_controller->set_fake_mouse_lock_for_test(true);
|
| browser()->RequestToLockMouse(tab, user_gesture,
|
| last_unlocked_by_target);
|
| + mouse_lock_controller->set_fake_mouse_lock_for_test(false);
|
| }
|
|
|
| FullscreenController* FullscreenControllerTest::GetFullscreenController() {
|
|
|