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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "base/json/json_file_value_serializer.h" | 6 #include "base/json/json_file_value_serializer.h" |
| 7 #include "base/macros.h" |
7 #include "base/memory/linked_ptr.h" | 8 #include "base/memory/linked_ptr.h" |
8 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h" | 9 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h" |
9 #include "extensions/common/error_utils.h" | 10 #include "extensions/common/error_utils.h" |
10 #include "extensions/common/features/simple_feature.h" | 11 #include "extensions/common/features/simple_feature.h" |
11 #include "extensions/common/manifest_constants.h" | 12 #include "extensions/common/manifest_constants.h" |
12 #include "extensions/common/manifest_handlers/app_isolation_info.h" | 13 #include "extensions/common/manifest_handlers/app_isolation_info.h" |
13 #include "extensions/common/manifest_handlers/csp_info.h" | 14 #include "extensions/common/manifest_handlers/csp_info.h" |
14 #include "extensions/common/manifest_handlers/incognito_info.h" | 15 #include "extensions/common/manifest_handlers/incognito_info.h" |
15 #include "extensions/common/switches.h" | 16 #include "extensions/common/switches.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 } | 138 } |
138 | 139 |
139 // Now try again with the experimental flag set. | 140 // Now try again with the experimental flag set. |
140 base::CommandLine::ForCurrentProcess()->AppendSwitch( | 141 base::CommandLine::ForCurrentProcess()->AppendSwitch( |
141 switches::kEnableExperimentalExtensionApis); | 142 switches::kEnableExperimentalExtensionApis); |
142 for (const scoped_ptr<ManifestData>& manifest : manifests) | 143 for (const scoped_ptr<ManifestData>& manifest : manifests) |
143 LoadAndExpectSuccess(*manifest); | 144 LoadAndExpectSuccess(*manifest); |
144 } | 145 } |
145 | 146 |
146 } // namespace extensions | 147 } // namespace extensions |
OLD | NEW |