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 "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
9 #include "base/stringprintf.h" | 9 #include "base/stringprintf.h" |
10 #include "base/threading/thread_restrictions.h" | 10 #include "base/threading/thread_restrictions.h" |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 int InstalledLoader::GetCreationFlags(const ExtensionInfo* info) { | 305 int InstalledLoader::GetCreationFlags(const ExtensionInfo* info) { |
306 int flags = Extension::NO_FLAGS; | 306 int flags = Extension::NO_FLAGS; |
307 if (info->extension_location != Extension::LOAD) | 307 if (info->extension_location != Extension::LOAD) |
308 flags |= Extension::REQUIRE_KEY; | 308 flags |= Extension::REQUIRE_KEY; |
309 if (extension_prefs_->AllowFileAccess(info->extension_id)) | 309 if (extension_prefs_->AllowFileAccess(info->extension_id)) |
310 flags |= Extension::ALLOW_FILE_ACCESS; | 310 flags |= Extension::ALLOW_FILE_ACCESS; |
311 if (extension_prefs_->IsFromWebStore(info->extension_id)) | 311 if (extension_prefs_->IsFromWebStore(info->extension_id)) |
312 flags |= Extension::FROM_WEBSTORE; | 312 flags |= Extension::FROM_WEBSTORE; |
313 if (extension_prefs_->IsFromBookmark(info->extension_id)) | 313 if (extension_prefs_->IsFromBookmark(info->extension_id)) |
314 flags |= Extension::FROM_BOOKMARK; | 314 flags |= Extension::FROM_BOOKMARK; |
| 315 if (extension_prefs_->WasInstalledByDefault(info->extension_id)) { |
| 316 flags |= Extension::WAS_INSTALLED_BY_DEFAULT; |
| 317 } |
315 return flags; | 318 return flags; |
316 } | 319 } |
317 | 320 |
318 } // namespace extensions | 321 } // namespace extensions |
OLD | NEW |