| 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_prefs.h" | |
| 17 #include "chrome/browser/extensions/install_signer.h" | 16 #include "chrome/browser/extensions/install_signer.h" |
| 18 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
| 19 #include "chrome/common/extensions/manifest_url_handler.h" | 18 #include "chrome/common/extensions/manifest_url_handler.h" |
| 20 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" |
| 21 #include "content/public/common/content_switches.h" | 20 #include "content/public/common/content_switches.h" |
| 21 #include "extensions/browser/extension_prefs.h" |
| 22 #include "extensions/browser/pref_names.h" | 22 #include "extensions/browser/pref_names.h" |
| 23 #include "extensions/common/manifest.h" | 23 #include "extensions/common/manifest.h" |
| 24 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
| 25 #include "ui/base/l10n/l10n_util.h" | 25 #include "ui/base/l10n/l10n_util.h" |
| 26 | 26 |
| 27 namespace { | 27 namespace { |
| 28 | 28 |
| 29 enum VerifyStatus { | 29 enum VerifyStatus { |
| 30 NONE = 0, // Do not request install signatures, and do not enforce them. | 30 NONE = 0, // Do not request install signatures, and do not enforce them. |
| 31 BOOTSTRAP, // Request install signatures, but do not enforce them. | 31 BOOTSTRAP, // Request install signatures, but do not enforce them. |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 if (!operation->callback.is_null()) | 476 if (!operation->callback.is_null()) |
| 477 operation->callback.Run(success); | 477 operation->callback.Run(success); |
| 478 } | 478 } |
| 479 | 479 |
| 480 if (!operation_queue_.empty()) | 480 if (!operation_queue_.empty()) |
| 481 BeginFetch(); | 481 BeginFetch(); |
| 482 } | 482 } |
| 483 | 483 |
| 484 | 484 |
| 485 } // namespace extensions | 485 } // namespace extensions |
| OLD | NEW |