| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/test/base/use_interactive_test_case.h" |
| 6 |
| 7 #include <Cocoa/Cocoa.h> |
| 8 |
| 9 #include "base/run_loop.h" |
| 10 #include "chrome/test/base/move_test_process_to_front_mac.h" |
| 11 |
| 12 void RunTestInteractively() { |
| 13 [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular]; |
| 14 SetProcessToFront(); |
| 15 base::RunLoop().Run(); |
| 16 } |
| OLD | NEW |