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/browser/extensions/crx_installer.h" | 5 #include "chrome/browser/extensions/crx_installer.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "chrome/browser/profiles/profile.h" | 34 #include "chrome/browser/profiles/profile.h" |
35 #include "chrome/browser/web_applications/web_app.h" | 35 #include "chrome/browser/web_applications/web_app.h" |
36 #include "chrome/common/chrome_paths.h" | 36 #include "chrome/common/chrome_paths.h" |
37 #include "chrome/common/extensions/extension_constants.h" | 37 #include "chrome/common/extensions/extension_constants.h" |
38 #include "chrome/common/extensions/extension_file_util.h" | 38 #include "chrome/common/extensions/extension_file_util.h" |
39 #include "chrome/common/extensions/extension_icon_set.h" | 39 #include "chrome/common/extensions/extension_icon_set.h" |
40 #include "chrome/common/extensions/feature_switch.h" | 40 #include "chrome/common/extensions/feature_switch.h" |
41 #include "chrome/common/extensions/manifest.h" | 41 #include "chrome/common/extensions/manifest.h" |
42 #include "chrome/common/extensions/manifest_handlers/shared_module_info.h" | 42 #include "chrome/common/extensions/manifest_handlers/shared_module_info.h" |
43 #include "chrome/common/extensions/manifest_url_handler.h" | 43 #include "chrome/common/extensions/manifest_url_handler.h" |
44 #include "chrome/common/extensions/user_script.h" | |
45 #include "content/public/browser/browser_thread.h" | 44 #include "content/public/browser/browser_thread.h" |
46 #include "content/public/browser/notification_service.h" | 45 #include "content/public/browser/notification_service.h" |
47 #include "content/public/browser/resource_dispatcher_host.h" | 46 #include "content/public/browser/resource_dispatcher_host.h" |
48 #include "content/public/browser/user_metrics.h" | 47 #include "content/public/browser/user_metrics.h" |
| 48 #include "extensions/common/user_script.h" |
49 #include "grit/chromium_strings.h" | 49 #include "grit/chromium_strings.h" |
50 #include "grit/generated_resources.h" | 50 #include "grit/generated_resources.h" |
51 #include "grit/theme_resources.h" | 51 #include "grit/theme_resources.h" |
52 #include "third_party/skia/include/core/SkBitmap.h" | 52 #include "third_party/skia/include/core/SkBitmap.h" |
53 #include "ui/base/l10n/l10n_util.h" | 53 #include "ui/base/l10n/l10n_util.h" |
54 #include "ui/base/resource/resource_bundle.h" | 54 #include "ui/base/resource/resource_bundle.h" |
55 | 55 |
56 using content::BrowserThread; | 56 using content::BrowserThread; |
57 using content::UserMetricsAction; | 57 using content::UserMetricsAction; |
58 using extensions::SharedModuleInfo; | 58 using extensions::SharedModuleInfo; |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 if (!prefs->DidExtensionEscalatePermissions(extension()->id())) | 786 if (!prefs->DidExtensionEscalatePermissions(extension()->id())) |
787 return; | 787 return; |
788 | 788 |
789 if (client_) { | 789 if (client_) { |
790 AddRef(); // Balanced in InstallUIProceed() and InstallUIAbort(). | 790 AddRef(); // Balanced in InstallUIProceed() and InstallUIAbort(). |
791 client_->ConfirmReEnable(this, extension()); | 791 client_->ConfirmReEnable(this, extension()); |
792 } | 792 } |
793 } | 793 } |
794 | 794 |
795 } // namespace extensions | 795 } // namespace extensions |
OLD | NEW |