aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-storage.c
Commit message (Expand)AuthorAgeFilesLines
* Complete the code to associate a URI and a folder type to the toplevelEttore Perazzoli2000-12-091-6/+35
* Start implementing a physical URI property for the toplevel nodes inEttore Perazzoli2000-12-051-4/+37
* Add "highligted" field to Folder. Add update_folder method toDan Winship2000-11-021-0/+30
* Added check for gnome-app-lib. Removed directories that have been moved toChristopher James Lahey2000-09-181-1/+1
* foreach_data should be set to the caller-supplied data, not the tree itemDan Winship2000-09-151-4/+4
* Fully support setting the display name in the tree. It seems to work.Ettore Perazzoli2000-09-111-26/+7
* Implemented a new `EFolderTree' object. Make `EStorage' use itEttore Perazzoli2000-09-091-184/+56
* Changed `Evolution::Storage' so that the displayed name for a folderEttore Perazzoli2000-09-011-11/+28
* Update the ::user_select_folder() interface so that it accepts both aEttore Perazzoli2000-08-041-0/+70
* Teeny tiny mem leak fix.Matthew Loper2000-07-271-0/+1
* Removed some useless debugging messages.Ettore Perazzoli2000-07-111-1/+0
* Implemented folder creation dialog (File -> New -> Folder). To makeEttore Perazzoli2000-06-111-27/+61
* Fixed a refcount leak and added interfaces to add/remove foldersEttore Perazzoli2000-06-081-32/+116
* Made the storage view update at changes in the storage, andEttore Perazzoli2000-05-261-121/+49
* Get rid of the old `evolution-service-repository' cruft and startEttore Perazzoli2000-05-231-16/+20
* Big shell reorganization.Ettore Perazzoli2000-05-071-0/+473
idium: resurrect, update to 2022.03.99.1' href='/~lantw44/cgit/freebsd-ports/commit/www/iridium/files/patch-chrome_browser_sync_chrome__sync__client.cc?id=06a832ee8dc55cc8d53f0e49272f33594e941784'>06a832ee8dc5
10116752aea6


7034f5e54ba5








1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
                                                                               
                                             


















                                                                                     




                                                                                            


                                                                              








                                                                              
--- chrome/browser/sync/chrome_sync_client.cc.orig  2023-03-13 07:33:08 UTC
+++ chrome/browser/sync/chrome_sync_client.cc
@@ -126,7 +126,7 @@
 #endif  // BUILDFLAG(IS_ANDROID)
 
 #if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
-    BUILDFLAG(IS_WIN)
+    BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
 #include "chrome/browser/ui/tabs/saved_tab_groups/saved_tab_group_keyed_service.h"
 #include "chrome/browser/ui/tabs/saved_tab_groups/saved_tab_group_service_factory.h"
 #endif  // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) ||
@@ -467,7 +467,7 @@ ChromeSyncClient::CreateDataTypeControllers(syncer::Sy
 #endif  // !BUILDFLAG(IS_ANDROID)
 
 #if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
-    BUILDFLAG(IS_WIN)
+    BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
     if (features::kTabGroupsSaveSyncIntegration.Get()) {
       controllers.push_back(std::make_unique<syncer::ModelTypeController>(
           syncer::SAVED_TAB_GROUP,
@@ -480,7 +480,7 @@ ChromeSyncClient::CreateDataTypeControllers(syncer::Sy
 
 // Chrome prefers OS provided spell checkers where they exist. So only sync the
 // custom dictionary on platforms that typically don't provide one.
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
     // Dictionary sync is enabled by default.
     if (GetPrefService()->GetBoolean(spellcheck::prefs::kSpellCheckEnable)) {
       controllers.push_back(
@@ -639,7 +639,7 @@ base::WeakPtr<syncer::ModelTypeControllerDelegate>
 ChromeSyncClient::GetControllerDelegateForModelType(syncer::ModelType type) {
   switch (type) {
 #if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
-    BUILDFLAG(IS_WIN)
+    BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
     case syncer::SAVED_TAB_GROUP: {
       DCHECK(features::kTabGroupsSaveSyncIntegration.Get());
       return SavedTabGroupServiceFactory::GetForProfile(profile_)