| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "chrome/browser/extensions/extension_apitest.h" | 6 #include "chrome/browser/extensions/extension_apitest.h" |
| 7 #include "chrome/browser/tab_contents/tab_contents.h" | 7 #include "chrome/browser/tab_contents/tab_contents.h" |
| 8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
| 9 #include "chrome/test/ui_test_utils.h" | 9 #include "chrome/test/ui_test_utils.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 IN_PROC_BROWSER_TEST_F(ExtensionResourceRequestPolicyTest, Audio) { | 87 IN_PROC_BROWSER_TEST_F(ExtensionResourceRequestPolicyTest, Audio) { |
| 88 EXPECT_TRUE(RunExtensionSubtest("extension_resource_request_policy/media", | 88 EXPECT_TRUE(RunExtensionSubtest("extension_resource_request_policy/media", |
| 89 "audio.html")); | 89 "audio.html")); |
| 90 } | 90 } |
| 91 | 91 |
| 92 IN_PROC_BROWSER_TEST_F(ExtensionResourceRequestPolicyTest, Video) { | 92 IN_PROC_BROWSER_TEST_F(ExtensionResourceRequestPolicyTest, Video) { |
| 93 EXPECT_TRUE(RunExtensionSubtest("extension_resource_request_policy/media", | 93 EXPECT_TRUE(RunExtensionSubtest("extension_resource_request_policy/media", |
| 94 "video.html")); | 94 "video.html")); |
| 95 } | 95 } |
| OLD | NEW |