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 #ifndef EXTENSIONS_COMMON_MANIFEST_TEST_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_TEST_H_ |
6 #define EXTENSIONS_COMMON_MANIFEST_TEST_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_TEST_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
8 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
10 #include "base/values.h" | 13 #include "base/values.h" |
11 #include "extensions/common/extension.h" | 14 #include "extensions/common/extension.h" |
12 #include "extensions/common/manifest.h" | 15 #include "extensions/common/manifest.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
14 | 17 |
15 namespace base { | 18 namespace base { |
16 class FilePath; | 19 class FilePath; |
17 } | 20 } |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 | 163 |
161 bool enable_apps_; | 164 bool enable_apps_; |
162 | 165 |
163 private: | 166 private: |
164 DISALLOW_COPY_AND_ASSIGN(ManifestTest); | 167 DISALLOW_COPY_AND_ASSIGN(ManifestTest); |
165 }; | 168 }; |
166 | 169 |
167 } // namespace extensions | 170 } // namespace extensions |
168 | 171 |
169 #endif // EXTENSIONS_COMMON_MANIFEST_TEST_H_ | 172 #endif // EXTENSIONS_COMMON_MANIFEST_TEST_H_ |
OLD | NEW |