Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / ash / chrome_launcher_prefs.h
blob05249da626edf6c6e3d1164ad3e15693d5f6798d
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_
6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_
8 #include <string>
10 namespace base {
11 class DictionaryValue;
14 namespace user_prefs {
15 class PrefRegistrySyncable;
18 namespace ash {
20 // Path within the dictionary entries in the prefs::kPinnedLauncherApps list
21 // specifying the extension ID of the app to be pinned by that entry.
22 extern const char kPinnedAppsPrefAppIDPath[];
24 // Values used for prefs::kShelfAutoHideBehavior.
25 extern const char kShelfAutoHideBehaviorAlways[];
26 extern const char kShelfAutoHideBehaviorNever[];
28 // Values used for prefs::kShelfAlignment.
29 extern const char kShelfAlignmentBottom[];
30 extern const char kShelfAlignmentLeft[];
31 extern const char kShelfAlignmentRight[];
32 extern const char kShelfAlignmentTop[];
34 void RegisterChromeLauncherUserPrefs(
35 user_prefs::PrefRegistrySyncable* registry);
37 base::DictionaryValue* CreateAppDict(const std::string& app_id);
39 } // namespace ash
41 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_