| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/plugins/plugins_handler.h" | 5 #include "chrome/common/extensions/api/plugins/plugins_handler.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "chrome/common/extensions/extension_manifest_constants.h" | 11 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 12 #include "chrome/common/extensions/manifest.h" | 12 #include "chrome/common/extensions/manifest.h" |
| 13 #include "chrome/common/extensions/permissions/api_permission.h" | 13 #include "chrome/common/extensions/permissions/api_permission.h" |
| 14 #include "chrome/common/extensions/permissions/api_permission_set.h" | 14 #include "chrome/common/extensions/permissions/api_permission_set.h" |
| 15 #include "chrome/common/extensions/permissions/permissions_data.h" | 15 #include "chrome/common/extensions/permissions/permissions_data.h" |
| 16 #include "extensions/common/error_utils.h" | 16 #include "extensions/common/error_utils.h" |
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 | 19 |
| 20 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
| 21 #include "base/win/metro.h" | 21 #include "base/win/metro.h" |
| 22 #endif | 22 #endif |
| 23 | 23 |
| 24 namespace keys = extension_manifest_keys; | 24 namespace extensions { |
| 25 | 25 |
| 26 namespace extensions { | 26 namespace keys = manifest_keys; |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| 29 | 29 |
| 30 struct PluginManifestData : Extension::ManifestData { | 30 struct PluginManifestData : Extension::ManifestData { |
| 31 // Optional list of NPAPI plugins and associated properties for an extension. | 31 // Optional list of NPAPI plugins and associated properties for an extension. |
| 32 PluginInfo::PluginVector plugins; | 32 PluginInfo::PluginVector plugins; |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 } // namespace | 35 } // namespace |
| 36 | 36 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 IDS_EXTENSION_LOAD_PLUGIN_PATH_FAILED, | 141 IDS_EXTENSION_LOAD_PLUGIN_PATH_FAILED, |
| 142 plugin->path.LossyDisplayName()); | 142 plugin->path.LossyDisplayName()); |
| 143 return false; | 143 return false; |
| 144 } | 144 } |
| 145 } | 145 } |
| 146 } | 146 } |
| 147 return true; | 147 return true; |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace extensions | 150 } // namespace extensions |
| OLD | NEW |