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 "chrome/common/extensions/api/extension_api.h" | 5 #include "chrome/common/extensions/api/extension_api.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/json/json_reader.h" | 12 #include "base/json/json_reader.h" |
13 #include "base/json/json_writer.h" | 13 #include "base/json/json_writer.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/path_service.h" | 16 #include "base/path_service.h" |
17 #include "base/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "chrome/common/chrome_paths.h" | 19 #include "chrome/common/chrome_paths.h" |
20 #include "chrome/common/extensions/extension.h" | 20 #include "chrome/common/extensions/extension.h" |
21 #include "chrome/common/extensions/extension_manifest_constants.h" | 21 #include "chrome/common/extensions/extension_manifest_constants.h" |
22 #include "chrome/common/extensions/features/api_feature.h" | 22 #include "chrome/common/extensions/features/api_feature.h" |
23 #include "chrome/common/extensions/features/base_feature_provider.h" | 23 #include "chrome/common/extensions/features/base_feature_provider.h" |
24 #include "chrome/common/extensions/features/simple_feature.h" | 24 #include "chrome/common/extensions/features/simple_feature.h" |
25 #include "chrome/common/extensions/manifest.h" | 25 #include "chrome/common/extensions/manifest.h" |
26 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
27 | 27 |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 GetDictionaryFromList(dict, "parameters", 0, &sub_dict); | 664 GetDictionaryFromList(dict, "parameters", 0, &sub_dict); |
665 EXPECT_TRUE(sub_dict->GetString("$ref", &type)); | 665 EXPECT_TRUE(sub_dict->GetString("$ref", &type)); |
666 EXPECT_EQ("test.foo.TestType", type); | 666 EXPECT_EQ("test.foo.TestType", type); |
667 GetDictionaryFromList(dict, "parameters", 1, &sub_dict); | 667 GetDictionaryFromList(dict, "parameters", 1, &sub_dict); |
668 EXPECT_TRUE(sub_dict->GetString("$ref", &type)); | 668 EXPECT_TRUE(sub_dict->GetString("$ref", &type)); |
669 EXPECT_EQ("fully.qualified.Type", type); | 669 EXPECT_EQ("fully.qualified.Type", type); |
670 } | 670 } |
671 | 671 |
672 } // namespace | 672 } // namespace |
673 } // namespace extensions | 673 } // namespace extensions |
OLD | NEW |