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/ui/ash/chrome_launcher_prefs.h" | 5 #include "chrome/browser/ui/ash/chrome_launcher_prefs.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "chrome/browser/prefs/pref_service.h" | 10 #include "chrome/browser/prefs/pref_service.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 return apps.release(); | 28 return apps.release(); |
29 } | 29 } |
30 | 30 |
31 } // namespace | 31 } // namespace |
32 | 32 |
33 namespace ash { | 33 namespace ash { |
34 | 34 |
35 const char kPinnedAppsPrefAppIDPath[] = "id"; | 35 const char kPinnedAppsPrefAppIDPath[] = "id"; |
36 | 36 |
37 const char kShelfAutoHideBehaviorAlways[] = "Always"; | 37 const char kShelfAutoHideBehaviorAlways[] = "Always"; |
| 38 const char kShelfAutoHideBehaviorDefault[] = "Default"; |
38 const char kShelfAutoHideBehaviorNever[] = "Never"; | 39 const char kShelfAutoHideBehaviorNever[] = "Never"; |
39 | 40 |
40 extern const char kShelfAlignmentBottom[] = "Bottom"; | 41 extern const char kShelfAlignmentBottom[] = "Bottom"; |
41 extern const char kShelfAlignmentLeft[] = "Left"; | 42 extern const char kShelfAlignmentLeft[] = "Left"; |
42 extern const char kShelfAlignmentRight[] = "Right"; | 43 extern const char kShelfAlignmentRight[] = "Right"; |
43 | 44 |
44 void RegisterChromeLauncherUserPrefs(PrefService* user_prefs) { | 45 void RegisterChromeLauncherUserPrefs(PrefService* user_prefs) { |
45 // TODO: If we want to support multiple profiles this will likely need to be | 46 // TODO: If we want to support multiple profiles this will likely need to be |
46 // pushed to local state and we'll need to track profile per item. | 47 // pushed to local state and we'll need to track profile per item. |
47 user_prefs->RegisterBooleanPref(prefs::kUseDefaultPinnedApps, | 48 user_prefs->RegisterBooleanPref(prefs::kUseDefaultPinnedApps, |
48 true, | 49 true, |
49 PrefService::SYNCABLE_PREF); | 50 PrefService::SYNCABLE_PREF); |
50 user_prefs->RegisterListPref(prefs::kPinnedLauncherApps, | 51 user_prefs->RegisterListPref(prefs::kPinnedLauncherApps, |
51 CreateDefaultPinnedAppsList(), | 52 CreateDefaultPinnedAppsList(), |
52 PrefService::SYNCABLE_PREF); | 53 PrefService::SYNCABLE_PREF); |
53 user_prefs->RegisterStringPref(prefs::kShelfAutoHideBehavior, | 54 user_prefs->RegisterStringPref(prefs::kShelfAutoHideBehavior, |
54 kShelfAutoHideBehaviorNever, | 55 kShelfAutoHideBehaviorDefault, |
55 PrefService::SYNCABLE_PREF); | 56 PrefService::SYNCABLE_PREF); |
56 user_prefs->RegisterStringPref(prefs::kShelfAlignment, | 57 user_prefs->RegisterStringPref(prefs::kShelfAlignment, |
57 kShelfAlignmentBottom, | 58 kShelfAlignmentBottom, |
58 PrefService::SYNCABLE_PREF); | 59 PrefService::SYNCABLE_PREF); |
59 user_prefs->RegisterBooleanPref(prefs::kLauncherShouldRunSyncAnimation, | 60 user_prefs->RegisterBooleanPref(prefs::kLauncherShouldRunSyncAnimation, |
60 true, | 61 true, |
61 PrefService::UNSYNCABLE_PREF); | 62 PrefService::UNSYNCABLE_PREF); |
62 } | 63 } |
63 | 64 |
64 base::DictionaryValue* CreateAppDict(const std::string& app_id) { | 65 base::DictionaryValue* CreateAppDict(const std::string& app_id) { |
65 scoped_ptr<base::DictionaryValue> app_value(new base::DictionaryValue); | 66 scoped_ptr<base::DictionaryValue> app_value(new base::DictionaryValue); |
66 app_value->SetString(kPinnedAppsPrefAppIDPath, app_id); | 67 app_value->SetString(kPinnedAppsPrefAppIDPath, app_id); |
67 return app_value.release(); | 68 return app_value.release(); |
68 } | 69 } |
69 | 70 |
70 } // namespace ash | 71 } // namespace ash |
OLD | NEW |