| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/extension.h" | 5 #include "chrome/common/extensions/extension.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
| 10 #include "base/base64.h" | 10 #include "base/base64.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "base/version.h" | 24 #include "base/version.h" |
| 25 #include "chrome/common/chrome_constants.h" | 25 #include "chrome/common/chrome_constants.h" |
| 26 #include "chrome/common/chrome_switches.h" | 26 #include "chrome/common/chrome_switches.h" |
| 27 #include "chrome/common/chrome_version_info.h" | 27 #include "chrome/common/chrome_version_info.h" |
| 28 #include "chrome/common/extensions/extension_action.h" | 28 #include "chrome/common/extensions/extension_action.h" |
| 29 #include "chrome/common/extensions/extension_constants.h" | 29 #include "chrome/common/extensions/extension_constants.h" |
| 30 #include "chrome/common/extensions/extension_error_utils.h" | 30 #include "chrome/common/extensions/extension_error_utils.h" |
| 31 #include "chrome/common/extensions/extension_l10n_util.h" | 31 #include "chrome/common/extensions/extension_l10n_util.h" |
| 32 #include "chrome/common/extensions/extension_resource.h" | 32 #include "chrome/common/extensions/extension_resource.h" |
| 33 #include "chrome/common/extensions/user_script.h" | 33 #include "chrome/common/extensions/user_script.h" |
| 34 #include "chrome/common/notification_service.h" | |
| 35 #include "chrome/common/url_constants.h" | 34 #include "chrome/common/url_constants.h" |
| 36 #include "googleurl/src/url_util.h" | 35 #include "googleurl/src/url_util.h" |
| 37 #include "grit/chromium_strings.h" | 36 #include "grit/chromium_strings.h" |
| 38 #include "grit/generated_resources.h" | 37 #include "grit/generated_resources.h" |
| 39 #include "net/base/registry_controlled_domain.h" | 38 #include "net/base/registry_controlled_domain.h" |
| 40 #include "third_party/skia/include/core/SkBitmap.h" | 39 #include "third_party/skia/include/core/SkBitmap.h" |
| 41 #include "webkit/glue/image_decoder.h" | 40 #include "webkit/glue/image_decoder.h" |
| 42 | 41 |
| 43 namespace keys = extension_manifest_keys; | 42 namespace keys = extension_manifest_keys; |
| 44 namespace values = extension_manifest_values; | 43 namespace values = extension_manifest_values; |
| (...skipping 2210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2255 UninstalledExtensionInfo::UninstalledExtensionInfo( | 2254 UninstalledExtensionInfo::UninstalledExtensionInfo( |
| 2256 const Extension& extension) | 2255 const Extension& extension) |
| 2257 : extension_id(extension.id()), | 2256 : extension_id(extension.id()), |
| 2258 extension_api_permissions(extension.api_permissions()), | 2257 extension_api_permissions(extension.api_permissions()), |
| 2259 is_theme(extension.is_theme()), | 2258 is_theme(extension.is_theme()), |
| 2260 is_app(extension.is_app()), | 2259 is_app(extension.is_app()), |
| 2261 converted_from_user_script(extension.converted_from_user_script()), | 2260 converted_from_user_script(extension.converted_from_user_script()), |
| 2262 update_url(extension.update_url()) {} | 2261 update_url(extension.update_url()) {} |
| 2263 | 2262 |
| 2264 UninstalledExtensionInfo::~UninstalledExtensionInfo() {} | 2263 UninstalledExtensionInfo::~UninstalledExtensionInfo() {} |
| OLD | NEW |