OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stddef.h> |
| 6 |
| 7 #include "base/macros.h" |
5 #include "base/path_service.h" | 8 #include "base/path_service.h" |
6 #include "base/test/test_timeouts.h" | 9 #include "base/test/test_timeouts.h" |
7 #include "base/win/windows_version.h" | 10 #include "base/win/windows_version.h" |
8 #include "build/build_config.h" | 11 #include "build/build_config.h" |
9 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" | 12 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
10 #include "chrome/browser/extensions/extension_browsertest.h" | 13 #include "chrome/browser/extensions/extension_browsertest.h" |
11 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
12 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_navigator_params.h" | 16 #include "chrome/browser/ui/browser_navigator_params.h" |
14 #include "chrome/browser/ui/extensions/app_launch_params.h" | 17 #include "chrome/browser/ui/extensions/app_launch_params.h" |
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1301 MAYBE_PPAPI_NACL(NoSocketPermissions)) { | 1304 MAYBE_PPAPI_NACL(NoSocketPermissions)) { |
1302 RunTests("no_socket_permissions"); | 1305 RunTests("no_socket_permissions"); |
1303 } | 1306 } |
1304 | 1307 |
1305 IN_PROC_BROWSER_TEST_F(NewlibPackagedAppTest, | 1308 IN_PROC_BROWSER_TEST_F(NewlibPackagedAppTest, |
1306 MAYBE_PPAPI_NACL(SocketPermissions)) { | 1309 MAYBE_PPAPI_NACL(SocketPermissions)) { |
1307 RunTests("socket_permissions"); | 1310 RunTests("socket_permissions"); |
1308 } | 1311 } |
1309 | 1312 |
1310 #endif | 1313 #endif |
OLD | NEW |