| OLD | NEW |
| (Empty) | |
| 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. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <string> |
| 10 |
| 11 class PrefService; |
| 12 |
| 13 namespace base { |
| 14 class DictionaryValue; |
| 15 } |
| 16 |
| 17 namespace ash { |
| 18 |
| 19 // Path within the dictionary entries in the prefs::kPinnedLauncherApps list |
| 20 // specifying the extension ID of the app to be pinned by that entry. |
| 21 extern const char kPinnedAppsPrefAppIDPath[]; |
| 22 |
| 23 // Values used for prefs::kShelfAutoHideBehavior. |
| 24 extern const char kShelfAutoHideBehaviorAlways[]; |
| 25 extern const char kShelfAutoHideBehaviorDefault[]; |
| 26 extern const char kShelfAutoHideBehaviorNever[]; |
| 27 |
| 28 void RegisterChromeLauncherUserPrefs(PrefService* user_prefs); |
| 29 |
| 30 base::DictionaryValue* CreateAppDict(const std::string& app_id); |
| 31 |
| 32 } // namespace ash |
| 33 |
| 34 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| OLD | NEW |