Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/ui/ash/chrome_launcher_prefs.h

Issue 2352353002: Add AppLauncherId wrapper for items shown in shelf (Closed)
Patch Set: Review v3 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_
6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 // Values used for prefs::kShelfAutoHideBehavior. 45 // Values used for prefs::kShelfAutoHideBehavior.
46 extern const char kShelfAutoHideBehaviorAlways[]; 46 extern const char kShelfAutoHideBehaviorAlways[];
47 extern const char kShelfAutoHideBehaviorNever[]; 47 extern const char kShelfAutoHideBehaviorNever[];
48 48
49 // Values used for prefs::kShelfAlignment. 49 // Values used for prefs::kShelfAlignment.
50 extern const char kShelfAlignmentBottom[]; 50 extern const char kShelfAlignmentBottom[];
51 extern const char kShelfAlignmentLeft[]; 51 extern const char kShelfAlignmentLeft[];
52 extern const char kShelfAlignmentRight[]; 52 extern const char kShelfAlignmentRight[];
53 53
54 // A unique chrome launcher id used to identify a shelf item.
55 class AppLauncherId {
56 public:
57 explicit AppLauncherId(const std::string& app_id);
58 // This constructor is currently unused, but will be used in a follow-up CL.
59 AppLauncherId(const std::string& app_id, const std::string& launch_id);
James Cook 2016/10/03 21:14:36 Document here (or in the class comment above) abou
Andra Paraschiv 2016/10/04 11:39:00 Done.
60 ~AppLauncherId();
James Cook 2016/10/03 21:14:36 What about copy-construction and assignment? I thi
Andra Paraschiv 2016/10/04 11:39:00 Done.
61
62 const std::string& GetAsString() const { return app_launcher_id_; }
63
64 bool operator==(const AppLauncherId& app_launcher_id) const;
65
66 bool operator!=(const AppLauncherId& app_launcher_id) const;
James Cook 2016/10/03 21:14:36 Do you really need all of these operators? I would
Andra Paraschiv 2016/10/04 11:39:00 Yes, you are right, we currently need only these c
James Cook 2016/10/04 16:08:37 Yes, only include the ones you need.
Andra Paraschiv 2016/10/05 11:21:58 Done.
67
68 bool operator<(const AppLauncherId& app_launcher_id) const;
69
70 bool operator<=(const AppLauncherId& app_launcher_id) const;
71
72 bool operator>(const AppLauncherId& app_launcher_id) const;
73
74 bool operator>=(const AppLauncherId& app_launcher_id) const;
75
76 private:
77 // A unique chrome launcher id for a shelf item.
78 std::string app_launcher_id_;
79 };
80
54 void RegisterChromeLauncherUserPrefs( 81 void RegisterChromeLauncherUserPrefs(
55 user_prefs::PrefRegistrySyncable* registry); 82 user_prefs::PrefRegistrySyncable* registry);
56 83
57 base::DictionaryValue* CreateAppDict(const std::string& app_id); 84 base::DictionaryValue* CreateAppDict(const AppLauncherId& app_launcher_id);
58 85
59 // Get or set the shelf auto hide behavior preference for a particular display. 86 // Get or set the shelf auto hide behavior preference for a particular display.
60 ShelfAutoHideBehavior GetShelfAutoHideBehaviorPref(PrefService* prefs, 87 ShelfAutoHideBehavior GetShelfAutoHideBehaviorPref(PrefService* prefs,
61 int64_t display_id); 88 int64_t display_id);
62 void SetShelfAutoHideBehaviorPref(PrefService* prefs, 89 void SetShelfAutoHideBehaviorPref(PrefService* prefs,
63 int64_t display_id, 90 int64_t display_id,
64 ShelfAutoHideBehavior behavior); 91 ShelfAutoHideBehavior behavior);
65 92
66 // Get or set the shelf alignment preference for a particular display. 93 // Get or set the shelf alignment preference for a particular display.
67 ShelfAlignment GetShelfAlignmentPref(PrefService* prefs, int64_t display_id); 94 ShelfAlignment GetShelfAlignmentPref(PrefService* prefs, int64_t display_id);
68 void SetShelfAlignmentPref(PrefService* prefs, 95 void SetShelfAlignmentPref(PrefService* prefs,
69 int64_t display_id, 96 int64_t display_id,
70 ShelfAlignment alignment); 97 ShelfAlignment alignment);
71 98
72 // Get the list of pinned apps from preferences. 99 // Get the list of pinned apps from preferences.
73 std::vector<std::string> GetPinnedAppsFromPrefs( 100 std::vector<std::string> GetPinnedAppsFromPrefs(
74 const PrefService* prefs, 101 const PrefService* prefs,
75 LauncherControllerHelper* helper); 102 LauncherControllerHelper* helper);
76 103
77 // Removes information about pin position from sync model for the app. 104 // Removes information about pin position from sync model for the app.
78 void RemovePinPosition(Profile* profile, const std::string& app_id); 105 void RemovePinPosition(Profile* profile, const AppLauncherId& app_launcher_id);
79 106
80 // Updates information about pin position in sync model for the app |app_id|. 107 // Updates information about pin position in sync model for the app
81 // |app_id_before| optionally specifies an app that exists right before the 108 // |app_launcher_id|. |app_launcher_id_before| optionally specifies an app that
82 // target app. |app_ids_after| optionally specifies sorted by position apps that 109 // exists right before the target app. |app_launcher_ids_after| optionally
83 // exist right after the target app. 110 // specifies sorted by position apps that exist right after the target app.
84 void SetPinPosition(Profile* profile, 111 void SetPinPosition(Profile* profile,
85 const std::string& app_id, 112 const AppLauncherId& app_launcher_id,
86 const std::string& app_id_before, 113 const AppLauncherId& app_launcher_id_before,
87 const std::vector<std::string>& app_ids_after); 114 const std::vector<AppLauncherId>& app_launcher_ids_after);
88 115
89 // Used to propagate remote preferences to local during the first run. 116 // Used to propagate remote preferences to local during the first run.
90 class ChromeLauncherPrefsObserver 117 class ChromeLauncherPrefsObserver
91 : public syncable_prefs::PrefServiceSyncableObserver { 118 : public syncable_prefs::PrefServiceSyncableObserver {
92 public: 119 public:
93 // Creates and returns an instance of ChromeLauncherPrefsObserver if the 120 // Creates and returns an instance of ChromeLauncherPrefsObserver if the
94 // profile prefs do not contain all the necessary local settings for the 121 // profile prefs do not contain all the necessary local settings for the
95 // shelf. If the local settings are present, returns null. 122 // shelf. If the local settings are present, returns null.
96 static std::unique_ptr<ChromeLauncherPrefsObserver> CreateIfNecessary( 123 static std::unique_ptr<ChromeLauncherPrefsObserver> CreateIfNecessary(
97 Profile* profile); 124 Profile* profile);
(...skipping 10 matching lines...) Expand all
108 // Profile prefs. Not owned. 135 // Profile prefs. Not owned.
109 syncable_prefs::PrefServiceSyncable* prefs_; 136 syncable_prefs::PrefServiceSyncable* prefs_;
110 137
111 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherPrefsObserver); 138 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherPrefsObserver);
112 }; 139 };
113 140
114 } // namespace launcher 141 } // namespace launcher
115 } // namespace ash 142 } // namespace ash
116 143
117 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ 144 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/ash/chrome_launcher_prefs.cc » ('j') | chrome/browser/ui/ash/chrome_launcher_prefs.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698