| 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/installed_loader.h" | 5 #include "chrome/browser/extensions/installed_loader.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/metrics/histogram_macros.h" | 10 #include "base/metrics/histogram_macros.h" |
| 11 #include "base/metrics/sparse_histogram.h" | 11 #include "base/metrics/sparse_histogram.h" |
| 12 #include "base/strings/stringprintf.h" | |
| 13 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 14 #include "base/threading/thread_restrictions.h" | 13 #include "base/threading/thread_restrictions.h" |
| 15 #include "base/trace_event/trace_event.h" | 14 #include "base/trace_event/trace_event.h" |
| 16 #include "base/values.h" | 15 #include "base/values.h" |
| 17 #include "chrome/browser/browser_process.h" | 16 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/extensions/extension_error_reporter.h" | 17 #include "chrome/browser/extensions/extension_error_reporter.h" |
| 19 #include "chrome/browser/extensions/extension_service.h" | 18 #include "chrome/browser/extensions/extension_service.h" |
| 20 #include "chrome/browser/extensions/extension_util.h" | 19 #include "chrome/browser/extensions/extension_util.h" |
| 21 #include "chrome/browser/profiles/profile_manager.h" | 20 #include "chrome/browser/profiles/profile_manager.h" |
| 22 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 int InstalledLoader::GetCreationFlags(const ExtensionInfo* info) { | 605 int InstalledLoader::GetCreationFlags(const ExtensionInfo* info) { |
| 607 int flags = extension_prefs_->GetCreationFlags(info->extension_id); | 606 int flags = extension_prefs_->GetCreationFlags(info->extension_id); |
| 608 if (!Manifest::IsUnpackedLocation(info->extension_location)) | 607 if (!Manifest::IsUnpackedLocation(info->extension_location)) |
| 609 flags |= Extension::REQUIRE_KEY; | 608 flags |= Extension::REQUIRE_KEY; |
| 610 if (extension_prefs_->AllowFileAccess(info->extension_id)) | 609 if (extension_prefs_->AllowFileAccess(info->extension_id)) |
| 611 flags |= Extension::ALLOW_FILE_ACCESS; | 610 flags |= Extension::ALLOW_FILE_ACCESS; |
| 612 return flags; | 611 return flags; |
| 613 } | 612 } |
| 614 | 613 |
| 615 } // namespace extensions | 614 } // namespace extensions |
| OLD | NEW |