| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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/browser/extensions/install_verifier.h" | 5 #include "chrome/browser/extensions/install_verifier.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/metrics/field_trial.h" | 12 #include "base/metrics/field_trial.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/prefs/pref_service.h" | 14 #include "base/prefs/pref_service.h" |
| 15 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
| 16 #include "chrome/browser/extensions/extension_management.h" | 16 #include "chrome/browser/extensions/extension_management.h" |
| 17 #include "chrome/browser/extensions/extension_service.h" | 17 #include "chrome/browser/extensions/extension_service.h" |
| 18 #include "chrome/browser/extensions/install_signer.h" | 18 #include "chrome/browser/extensions/install_signer.h" |
| 19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
| 20 #include "chrome/common/pref_names.h" | |
| 21 #include "chrome/grit/generated_resources.h" | 20 #include "chrome/grit/generated_resources.h" |
| 22 #include "content/public/browser/browser_context.h" | 21 #include "content/public/browser/browser_context.h" |
| 23 #include "content/public/common/content_switches.h" | 22 #include "content/public/common/content_switches.h" |
| 24 #include "extensions/browser/extension_prefs.h" | 23 #include "extensions/browser/extension_prefs.h" |
| 25 #include "extensions/browser/extension_registry.h" | 24 #include "extensions/browser/extension_registry.h" |
| 26 #include "extensions/browser/extension_system.h" | 25 #include "extensions/browser/extension_system.h" |
| 27 #include "extensions/browser/pref_names.h" | 26 #include "extensions/browser/pref_names.h" |
| 28 #include "extensions/common/extension_set.h" | 27 #include "extensions/common/extension_set.h" |
| 29 #include "extensions/common/manifest.h" | 28 #include "extensions/common/manifest.h" |
| 30 #include "extensions/common/manifest_url_handlers.h" | 29 #include "extensions/common/manifest_url_handlers.h" |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 } | 629 } |
| 631 | 630 |
| 632 OnVerificationComplete(success, operation->type); | 631 OnVerificationComplete(success, operation->type); |
| 633 } | 632 } |
| 634 | 633 |
| 635 if (!operation_queue_.empty()) | 634 if (!operation_queue_.empty()) |
| 636 BeginFetch(); | 635 BeginFetch(); |
| 637 } | 636 } |
| 638 | 637 |
| 639 } // namespace extensions | 638 } // namespace extensions |
| OLD | NEW |