| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/apps/app_browsertest_util.h" | 5 #include "chrome/browser/apps/app_browsertest_util.h" |
| 6 #include "chrome/browser/extensions/extension_test_message_listener.h" | |
| 7 #include "chrome/browser/ui/extensions/application_launch.h" | 6 #include "chrome/browser/ui/extensions/application_launch.h" |
| 8 #include "chrome/test/base/interactive_test_utils.h" | 7 #include "chrome/test/base/interactive_test_utils.h" |
| 8 #include "extensions/test/extension_test_message_listener.h" |
| 9 #include "extensions/test/result_catcher.h" | 9 #include "extensions/test/result_catcher.h" |
| 10 | 10 |
| 11 class ExtensionPointerLockTest : public extensions::PlatformAppBrowserTest { | 11 class ExtensionPointerLockTest : public extensions::PlatformAppBrowserTest { |
| 12 public: | 12 public: |
| 13 bool RunExtensionPointerLockTest(const char* app_path) { | 13 bool RunExtensionPointerLockTest(const char* app_path) { |
| 14 ExtensionTestMessageListener launched_listener("Launched", true); | 14 ExtensionTestMessageListener launched_listener("Launched", true); |
| 15 LoadAndLaunchPlatformApp(app_path, &launched_listener); | 15 LoadAndLaunchPlatformApp(app_path, &launched_listener); |
| 16 | 16 |
| 17 extensions::ResultCatcher catcher; | 17 extensions::ResultCatcher catcher; |
| 18 | 18 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 40 ASSERT_TRUE(RunExtensionPointerLockTest("pointer_lock/no_permission")) | 40 ASSERT_TRUE(RunExtensionPointerLockTest("pointer_lock/no_permission")) |
| 41 << message_; | 41 << message_; |
| 42 } | 42 } |
| 43 | 43 |
| 44 IN_PROC_BROWSER_TEST_F(ExtensionPointerLockTest, | 44 IN_PROC_BROWSER_TEST_F(ExtensionPointerLockTest, |
| 45 ExtensionPointerLockAccessPass) { | 45 ExtensionPointerLockAccessPass) { |
| 46 // Test that pointer lock can be accessed from an extension with permission. | 46 // Test that pointer lock can be accessed from an extension with permission. |
| 47 ASSERT_TRUE(RunExtensionPointerLockTest("pointer_lock/has_permission")) | 47 ASSERT_TRUE(RunExtensionPointerLockTest("pointer_lock/has_permission")) |
| 48 << message_; | 48 << message_; |
| 49 } | 49 } |
| OLD | NEW |