OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/extension_prefs.h" | 5 #include "chrome/browser/extensions/extension_prefs.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/common/extensions/extension.h" | 10 #include "chrome/common/extensions/extension.h" |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 void ExtensionPrefs::SetAllowFileAccess(const std::string& extension_id, | 445 void ExtensionPrefs::SetAllowFileAccess(const std::string& extension_id, |
446 bool allow) { | 446 bool allow) { |
447 UpdateExtensionPref(extension_id, kPrefAllowFileAccess, | 447 UpdateExtensionPref(extension_id, kPrefAllowFileAccess, |
448 Value::CreateBooleanValue(allow)); | 448 Value::CreateBooleanValue(allow)); |
449 SavePrefsAndNotify(); | 449 SavePrefsAndNotify(); |
450 } | 450 } |
451 | 451 |
452 ExtensionPrefs::LaunchType ExtensionPrefs::GetLaunchType( | 452 ExtensionPrefs::LaunchType ExtensionPrefs::GetLaunchType( |
453 const std::string& extension_id) { | 453 const std::string& extension_id) { |
454 int value; | 454 int value; |
455 if (ReadExtensionPrefInteger(extension_id, kPrefLaunchType, &value) && | 455 if (ReadExtensionPrefInteger(extension_id, kPrefLaunchType, &value) && ( |
456 (value == LAUNCH_PINNED || | 456 value == LAUNCH_PINNED || |
457 value == LAUNCH_REGULAR || | 457 value == LAUNCH_REGULAR || |
458 value == LAUNCH_FULLSCREEN || | 458 value == LAUNCH_FULLSCREEN)) { |
459 value == LAUNCH_WINDOW)) { | |
460 | |
461 #if defined(OS_MACOSX) | |
462 // App windows are not yet supported on mac. Pref sync could make | |
463 // the launch type LAUNCH_WINDOW, even if there is no UI to set it | |
464 // on mac. | |
465 if (value == LAUNCH_WINDOW) | |
466 return LAUNCH_REGULAR; | |
467 #endif | |
468 return static_cast<LaunchType>(value); | 459 return static_cast<LaunchType>(value); |
469 } | 460 } |
470 | |
471 return LAUNCH_REGULAR; | 461 return LAUNCH_REGULAR; |
472 } | 462 } |
473 | 463 |
474 void ExtensionPrefs::SetLaunchType(const std::string& extension_id, | 464 void ExtensionPrefs::SetLaunchType(const std::string& extension_id, |
475 LaunchType launch_type) { | 465 LaunchType launch_type) { |
476 UpdateExtensionPref(extension_id, kPrefLaunchType, | 466 UpdateExtensionPref(extension_id, kPrefLaunchType, |
477 Value::CreateIntegerValue(static_cast<int>(launch_type))); | 467 Value::CreateIntegerValue(static_cast<int>(launch_type))); |
478 SavePrefsAndNotify(); | 468 SavePrefsAndNotify(); |
479 } | 469 } |
480 | 470 |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 void ExtensionPrefs::RegisterUserPrefs(PrefService* prefs) { | 924 void ExtensionPrefs::RegisterUserPrefs(PrefService* prefs) { |
935 prefs->RegisterDictionaryPref(kExtensionsPref); | 925 prefs->RegisterDictionaryPref(kExtensionsPref); |
936 prefs->RegisterListPref(kExtensionToolbar); | 926 prefs->RegisterListPref(kExtensionToolbar); |
937 prefs->RegisterIntegerPref(prefs::kExtensionToolbarSize, -1); | 927 prefs->RegisterIntegerPref(prefs::kExtensionToolbarSize, -1); |
938 prefs->RegisterDictionaryPref(kExtensionsBlacklistUpdate); | 928 prefs->RegisterDictionaryPref(kExtensionsBlacklistUpdate); |
939 prefs->RegisterListPref(prefs::kExtensionInstallAllowList); | 929 prefs->RegisterListPref(prefs::kExtensionInstallAllowList); |
940 prefs->RegisterListPref(prefs::kExtensionInstallDenyList); | 930 prefs->RegisterListPref(prefs::kExtensionInstallDenyList); |
941 prefs->RegisterListPref(prefs::kExtensionInstallForceList); | 931 prefs->RegisterListPref(prefs::kExtensionInstallForceList); |
942 prefs->RegisterStringPref(kWebStoreLogin, std::string() /* default_value */); | 932 prefs->RegisterStringPref(kWebStoreLogin, std::string() /* default_value */); |
943 } | 933 } |
OLD | NEW |