Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / app_list_syncable_service.cc
index f97c94f..272da31 100644 (file)
@@ -5,17 +5,25 @@
 #include "chrome/browser/ui/app_list/app_list_syncable_service.h"
 
 #include "base/command_line.h"
+#include "base/strings/string_util.h"
+#include "chrome/browser/apps/drive/drive_app_provider.h"
 #include "chrome/browser/chrome_notification_types.h"
 #include "chrome/browser/extensions/extension_service.h"
 #include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/ui/app_list/app_list_prefs.h"
 #include "chrome/browser/ui/app_list/app_list_service.h"
 #include "chrome/browser/ui/app_list/extension_app_item.h"
 #include "chrome/browser/ui/app_list/extension_app_model_builder.h"
+#include "chrome/browser/ui/app_list/model_pref_updater.h"
 #include "chrome/browser/ui/host_desktop.h"
 #include "chrome/common/chrome_switches.h"
+#include "chrome/common/extensions/extension_constants.h"
+#include "chrome/grit/generated_resources.h"
 #include "content/public/browser/notification_source.h"
 #include "extensions/browser/extension_prefs.h"
 #include "extensions/browser/extension_system.h"
+#include "extensions/browser/uninstall_reason.h"
+#include "extensions/common/constants.h"
 #include "sync/api/sync_change_processor.h"
 #include "sync/api/sync_data.h"
 #include "sync/api/sync_merge_result.h"
 #include "ui/app_list/app_list_model.h"
 #include "ui/app_list/app_list_model_observer.h"
 #include "ui/app_list/app_list_switches.h"
+#include "ui/base/l10n/l10n_util.h"
+
+#if defined(OS_CHROMEOS)
+#include "chrome/browser/chromeos/file_manager/app_id.h"
+#include "chrome/browser/chromeos/genius_app/app_id.h"
+#endif
 
 using syncer::SyncChange;
 
@@ -32,10 +46,14 @@ namespace app_list {
 
 namespace {
 
-bool SyncAppListEnabled() {
-  return CommandLine::ForCurrentProcess()->HasSwitch(
-      ::switches::kEnableSyncAppList);
-}
+const char kOemFolderId[] = "ddb1da55-d478-4243-8642-56d3041f0263";
+
+// Prefix for a sync id of a Drive app. Drive app ids are in a different
+// format and have to be used because a Drive app could have only an URL
+// without a matching Chrome app. To differentiate the Drive app id from
+// Chrome app ids, this prefix will be added to create the sync item id
+// for a Drive app item.
+const char kDriveAppSyncIdPrefix[] = "drive-app-";
 
 void UpdateSyncItemFromSync(const sync_pb::AppListSpecifics& specifics,
                             AppListSyncableService::SyncItem* item) {
@@ -43,8 +61,6 @@ void UpdateSyncItemFromSync(const sync_pb::AppListSpecifics& specifics,
   item->item_type = specifics.item_type();
   item->item_name = specifics.item_name();
   item->parent_id = specifics.parent_id();
-  if (!specifics.page_ordinal().empty())
-    item->page_ordinal = syncer::StringOrdinal(specifics.page_ordinal());
   if (!specifics.item_ordinal().empty())
     item->item_ordinal = syncer::StringOrdinal(specifics.item_ordinal());
 }
@@ -58,8 +74,8 @@ bool UpdateSyncItemFromAppItem(const AppListItem* app_item,
     sync_item->parent_id = app_item->folder_id();
     changed = true;
   }
-  if (sync_item->item_name != app_item->title()) {
-    sync_item->item_name = app_item->title();
+  if (sync_item->item_name != app_item->name()) {
+    sync_item->item_name = app_item->name();
     changed = true;
   }
   if (!sync_item->item_ordinal.IsValid() ||
@@ -67,7 +83,6 @@ bool UpdateSyncItemFromAppItem(const AppListItem* app_item,
     sync_item->item_ordinal = app_item->position();
     changed = true;
   }
-  // TODO(stevenjb): Set page_ordinal.
   return changed;
 }
 
@@ -78,8 +93,6 @@ void GetSyncSpecificsFromSyncItem(const AppListSyncableService::SyncItem* item,
   specifics->set_item_type(item->item_type);
   specifics->set_item_name(item->item_name);
   specifics->set_parent_id(item->parent_id);
-  if (item->page_ordinal.IsValid())
-    specifics->set_page_ordinal(item->page_ordinal.ToInternalValue());
   if (item->item_ordinal.IsValid())
     specifics->set_item_ordinal(item->item_ordinal.ToInternalValue());
 }
@@ -94,12 +107,28 @@ syncer::SyncData GetSyncDataFromSyncItem(
 }
 
 bool AppIsDefault(ExtensionService* service, const std::string& id) {
-  return service && service->extension_prefs()->WasInstalledByDefault(id);
+  return service && extensions::ExtensionPrefs::Get(service->profile())
+                        ->WasInstalledByDefault(id);
+}
+
+bool IsUnRemovableDefaultApp(const std::string& id) {
+  if (id == extension_misc::kChromeAppId ||
+      id == extensions::kWebStoreAppId)
+    return true;
+#if defined(OS_CHROMEOS)
+  if (id == file_manager::kFileManagerAppId || id == genius_app::kGeniusAppId)
+    return true;
+#endif
+  return false;
 }
 
 void UninstallExtension(ExtensionService* service, const std::string& id) {
-  if (service && service->GetInstalledExtension(id))
-    service->UninstallExtension(id, false, NULL);
+  if (service && service->GetInstalledExtension(id)) {
+    service->UninstallExtension(id,
+                                extensions::UNINSTALL_REASON_SYNC,
+                                base::Bind(&base::DoNothing),
+                                NULL);
+  }
 }
 
 bool GetAppListItemType(AppListItem* item,
@@ -116,6 +145,20 @@ bool GetAppListItemType(AppListItem* item,
   return true;
 }
 
+bool IsDriveAppSyncId(const std::string& sync_id) {
+  return StartsWithASCII(sync_id, kDriveAppSyncIdPrefix, true);
+}
+
+std::string GetDriveAppSyncId(const std::string& drive_app_id) {
+  return kDriveAppSyncIdPrefix + drive_app_id;
+}
+
+std::string GetDriveAppIdFromSyncId(const std::string& sync_id) {
+  if (!IsDriveAppSyncId(sync_id))
+    return std::string();
+  return sync_id.substr(strlen(kDriveAppSyncIdPrefix));
+}
+
 }  // namespace
 
 // AppListSyncableService::SyncItem
@@ -135,34 +178,51 @@ AppListSyncableService::SyncItem::~SyncItem() {
 class AppListSyncableService::ModelObserver : public AppListModelObserver {
  public:
   explicit ModelObserver(AppListSyncableService* owner)
-      : owner_(owner) {
+      : owner_(owner),
+        adding_item_(NULL) {
     DVLOG(2) << owner_ << ": ModelObserver Added";
     owner_->model()->AddObserver(this);
   }
 
-  virtual ~ModelObserver() {
+  ~ModelObserver() override {
     owner_->model()->RemoveObserver(this);
     DVLOG(2) << owner_ << ": ModelObserver Removed";
   }
 
  private:
   // AppListModelObserver
-  virtual void OnAppListItemAdded(AppListItem* item) OVERRIDE {
-    DVLOG(2) << owner_ << " OnAppListItemAdded: " << item->ToDebugString();
+  void OnAppListItemAdded(AppListItem* item) override {
+    DCHECK(!adding_item_);
+    adding_item_ = item;  // Ignore updates while adding an item.
+    VLOG(2) << owner_ << " OnAppListItemAdded: " << item->ToDebugString();
     owner_->AddOrUpdateFromSyncItem(item);
+    adding_item_ = NULL;
   }
 
-  virtual void OnAppListItemWillBeDeleted(AppListItem* item) OVERRIDE {
-    DVLOG(2) << owner_ << " OnAppListItemDeleted: " << item->ToDebugString();
+  void OnAppListItemWillBeDeleted(AppListItem* item) override {
+    DCHECK(!adding_item_);
+    VLOG(2) << owner_ << " OnAppListItemDeleted: " << item->ToDebugString();
+    // Don't sync folder removal in case the folder still exists on another
+    // device (e.g. with device specific items in it). Empty folders will be
+    // deleted when the last item is removed (in PruneEmptySyncFolders()).
+    if (item->GetItemType() == AppListFolderItem::kItemType)
+      return;
     owner_->RemoveSyncItem(item->id());
   }
 
-  virtual void OnAppListItemUpdated(AppListItem* item) OVERRIDE {
-    DVLOG(2) << owner_ << " OnAppListItemUpdated: " << item->ToDebugString();
+  void OnAppListItemUpdated(AppListItem* item) override {
+    if (adding_item_) {
+      // Adding an item may trigger update notifications which should be
+      // ignored.
+      DCHECK_EQ(adding_item_, item);
+      return;
+    }
+    VLOG(2) << owner_ << " OnAppListItemUpdated: " << item->ToDebugString();
     owner_->UpdateSyncItem(item);
   }
 
   AppListSyncableService* owner_;
+  AppListItem* adding_item_;  // Unowned pointer to item being added.
 
   DISALLOW_COPY_AND_ASSIGN(ModelObserver);
 };
@@ -174,12 +234,17 @@ AppListSyncableService::AppListSyncableService(
     extensions::ExtensionSystem* extension_system)
     : profile_(profile),
       extension_system_(extension_system),
-      model_(new AppListModel) {
+      model_(new AppListModel),
+      initial_sync_data_processed_(false),
+      first_app_list_sync_(true) {
   if (!extension_system) {
     LOG(ERROR) << "AppListSyncableService created with no ExtensionSystem";
     return;
   }
 
+  oem_folder_name_ =
+      l10n_util::GetStringUTF8(IDS_APP_LIST_OEM_DEFAULT_FOLDER_NAME);
+
   // Note: model_observer_ is constructed after the initial sync changes are
   // received in MergeDataAndStartSyncing(). Changes to the model before that
   // will be synced after the initial sync occurs.
@@ -190,13 +255,15 @@ AppListSyncableService::AppListSyncableService(
   }
 
   // The extensions for this profile have not yet all been loaded.
-  registrar_.Add(this, chrome::NOTIFICATION_EXTENSIONS_READY,
+  registrar_.Add(this,
+                 extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED,
                  content::Source<Profile>(profile));
 }
 
 AppListSyncableService::~AppListSyncableService() {
   // Remove observers.
   model_observer_.reset();
+  model_pref_updater_.reset();
 
   STLDeleteContainerPairSecondPointers(sync_items_.begin(), sync_items_.end());
 }
@@ -213,22 +280,64 @@ void AppListSyncableService::BuildModel() {
     controller = service->GetControllerDelegate();
   apps_builder_.reset(new ExtensionAppModelBuilder(controller));
   DCHECK(profile_);
-  // TODO(stevenjb): Correctly handle OTR profiles for Guest mode.
-  if (!profile_->IsOffTheRecord() && SyncAppListEnabled()) {
-    DVLOG(1) << this << ": AppListSyncableService: InitializeWithService.";
+  if (app_list::switches::IsAppListSyncEnabled()) {
+    VLOG(1) << this << ": AppListSyncableService: InitializeWithService.";
     SyncStarted();
     apps_builder_->InitializeWithService(this);
   } else {
-    DVLOG(1) << this << ": AppListSyncableService: InitializeWithProfile.";
+    VLOG(1) << this << ": AppListSyncableService: InitializeWithProfile.";
     apps_builder_->InitializeWithProfile(profile_, model_.get());
   }
+
+  model_pref_updater_.reset(
+      new ModelPrefUpdater(AppListPrefs::Get(profile_), model_.get()));
+
+  if (app_list::switches::IsDriveAppsInAppListEnabled())
+    drive_app_provider_.reset(new DriveAppProvider(profile_, this));
+}
+
+void AppListSyncableService::ResetDriveAppProviderForTest() {
+  drive_app_provider_.reset();
+}
+
+void AppListSyncableService::Shutdown() {
+  // DriveAppProvider touches other KeyedServices in its dtor and needs be
+  // released in shutdown stage.
+  drive_app_provider_.reset();
+}
+
+void AppListSyncableService::TrackUninstalledDriveApp(
+    const std::string& drive_app_id) {
+  const std::string sync_id = GetDriveAppSyncId(drive_app_id);
+  SyncItem* sync_item = FindSyncItem(sync_id);
+  if (sync_item) {
+    DCHECK_EQ(sync_item->item_type,
+              sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP);
+    return;
+  }
+
+  sync_item = CreateSyncItem(
+      sync_id, sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP);
+  SendSyncChange(sync_item, SyncChange::ACTION_ADD);
+}
+
+void AppListSyncableService::UntrackUninstalledDriveApp(
+    const std::string& drive_app_id) {
+  const std::string sync_id = GetDriveAppSyncId(drive_app_id);
+  SyncItem* sync_item = FindSyncItem(sync_id);
+  if (!sync_item)
+    return;
+
+  DCHECK_EQ(sync_item->item_type,
+            sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP);
+  DeleteSyncItem(sync_item);
 }
 
 void AppListSyncableService::Observe(
     int type,
     const content::NotificationSource& source,
     const content::NotificationDetails& details) {
-  DCHECK_EQ(chrome::NOTIFICATION_EXTENSIONS_READY, type);
+  DCHECK_EQ(extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED, type);
   DCHECK_EQ(profile_, content::Source<Profile>(source).ptr());
   registrar_.RemoveAll();
   BuildModel();
@@ -242,13 +351,30 @@ AppListSyncableService::GetSyncItem(const std::string& id) const {
   return NULL;
 }
 
+void AppListSyncableService::SetOemFolderName(const std::string& name) {
+  oem_folder_name_ = name;
+  AppListFolderItem* oem_folder = model_->FindFolderItem(kOemFolderId);
+  if (oem_folder)
+    model_->SetItemName(oem_folder, oem_folder_name_);
+}
+
 void AppListSyncableService::AddItem(scoped_ptr<AppListItem> app_item) {
   SyncItem* sync_item = FindOrAddSyncItem(app_item.get());
   if (!sync_item)
     return;  // Item is not valid.
 
-  DVLOG(1) << this << ": AddItem: " << sync_item->ToString();
-  std::string folder_id = sync_item->parent_id;
+  std::string folder_id;
+  if (app_list::switches::IsFolderUIEnabled()) {
+    if (AppIsOem(app_item->id())) {
+      folder_id = FindOrCreateOemFolder();
+      VLOG_IF(2, !folder_id.empty())
+          << this << ": AddItem to OEM folder: " << sync_item->ToString();
+    } else {
+      folder_id = sync_item->parent_id;
+    }
+  }
+  VLOG(2) << this << ": AddItem: " << sync_item->ToString()
+          << " Folder: '" << folder_id << "'";
   model_->AddItemToFolder(app_item.Pass(), folder_id);
 }
 
@@ -283,6 +409,7 @@ AppListSyncableService::CreateSyncItemFromAppItem(AppListItem* app_item) {
   sync_pb::AppListSpecifics::AppListItemType type;
   if (!GetAppListItemType(app_item, &type))
     return NULL;
+  VLOG(2) << this << " CreateSyncItemFromAppItem:" << app_item->ToDebugString();
   SyncItem* sync_item = CreateSyncItem(app_item->id(), type);
   UpdateSyncItemFromAppItem(app_item, sync_item);
   SendSyncChange(sync_item, SyncChange::ACTION_ADD);
@@ -290,6 +417,11 @@ AppListSyncableService::CreateSyncItemFromAppItem(AppListItem* app_item) {
 }
 
 void AppListSyncableService::AddOrUpdateFromSyncItem(AppListItem* app_item) {
+  // Do not create a sync item for the OEM folder here, do that in
+  // ResolveFolderPositions once the position has been resolved.
+  if (app_item->id() == kOemFolderId)
+    return;
+
   SyncItem* sync_item = FindSyncItem(app_item->id());
   if (sync_item) {
     UpdateAppItemFromSyncItem(sync_item, app_item);
@@ -307,8 +439,8 @@ bool AppListSyncableService::RemoveDefaultApp(AppListItem* item,
   // installed as a Default app, uninstall the app instead of adding it.
   if (sync_item->item_type == sync_pb::AppListSpecifics::TYPE_APP &&
       AppIsDefault(extension_system_->extension_service(), item->id())) {
-    DVLOG(1) << this << ": HandleDefaultApp: Uninstall: "
-             << sync_item->ToString();
+    VLOG(2) << this << ": HandleDefaultApp: Uninstall: "
+            << sync_item->ToString();
     UninstallExtension(extension_system_->extension_service(), item->id());
     return true;
   }
@@ -322,7 +454,7 @@ bool AppListSyncableService::RemoveDefaultApp(AppListItem* item,
 
 void AppListSyncableService::DeleteSyncItem(SyncItem* sync_item) {
   if (SyncStarted()) {
-    DVLOG(2) << this << " -> SYNC DELETE: " << sync_item->ToString();
+    VLOG(2) << this << " -> SYNC DELETE: " << sync_item->ToString();
     SyncChange sync_change(FROM_HERE, SyncChange::ACTION_DELETE,
                            GetSyncDataFromSyncItem(sync_item));
     sync_processor_->ProcessSyncChanges(
@@ -353,8 +485,19 @@ void AppListSyncableService::RemoveItem(const std::string& id) {
   PruneEmptySyncFolders();
 }
 
+void AppListSyncableService::UpdateItem(AppListItem* app_item) {
+  // Check to see if the item needs to be moved to/from the OEM folder.
+  if (!app_list::switches::IsFolderUIEnabled())
+    return;
+  bool is_oem = AppIsOem(app_item->id());
+  if (!is_oem && app_item->folder_id() == kOemFolderId)
+    model_->MoveItemToFolder(app_item, "");
+  else if (is_oem && app_item->folder_id() != kOemFolderId)
+    model_->MoveItemToFolder(app_item, kOemFolderId);
+}
+
 void AppListSyncableService::RemoveSyncItem(const std::string& id) {
-  DVLOG(2) << this << ": RemoveSyncItem: " << id.substr(0, 8);
+  VLOG(2) << this << ": RemoveSyncItem: " << id.substr(0, 8);
   SyncItemMap::iterator iter = sync_items_.find(id);
   if (iter == sync_items_.end()) {
     DVLOG(2) << this << " : RemoveSyncItem: No Item.";
@@ -374,8 +517,8 @@ void AppListSyncableService::RemoveSyncItem(const std::string& id) {
       AppIsDefault(extension_system_->extension_service(), id)) {
     // This is a Default app; update the entry to a REMOVE_DEFAULT entry. This
     // will overwrite any existing entry for the item.
-    DVLOG(2) << this << " -> SYNC UPDATE: REMOVE_DEFAULT: "
-             << sync_item->item_id;
+    VLOG(2) << this << " -> SYNC UPDATE: REMOVE_DEFAULT: "
+            << sync_item->item_id;
     sync_item->item_type = sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP;
     SendSyncChange(sync_item, SyncChange::ACTION_UPDATE);
     return;
@@ -388,6 +531,7 @@ void AppListSyncableService::ResolveFolderPositions() {
   if (!app_list::switches::IsFolderUIEnabled())
     return;
 
+  VLOG(1) << "ResolveFolderPositions.";
   for (SyncItemMap::iterator iter = sync_items_.begin();
        iter != sync_items_.end(); ++iter) {
     SyncItem* sync_item = iter->second;
@@ -398,6 +542,15 @@ void AppListSyncableService::ResolveFolderPositions() {
       continue;
     UpdateAppItemFromSyncItem(sync_item, app_item);
   }
+
+  // Move the OEM folder if one exists and we have not synced its position.
+  AppListFolderItem* oem_folder = model_->FindFolderItem(kOemFolderId);
+  if (oem_folder && !FindSyncItem(kOemFolderId)) {
+    model_->SetItemPosition(oem_folder, GetOemFolderPos());
+    VLOG(1) << "Creating new OEM folder sync item: "
+            << oem_folder->position().ToDebugString();
+    CreateSyncItemFromAppItem(oem_folder);
+  }
 }
 
 void AppListSyncableService::PruneEmptySyncFolders() {
@@ -432,11 +585,13 @@ syncer::SyncMergeResult AppListSyncableService::MergeDataAndStartSyncing(
 
   sync_processor_ = sync_processor.Pass();
   sync_error_handler_ = error_handler.Pass();
+  if (switches::IsFolderUIEnabled())
+    model_->SetFoldersEnabled(true);
 
   syncer::SyncMergeResult result = syncer::SyncMergeResult(type);
   result.set_num_items_before_association(sync_items_.size());
-  DVLOG(1) << this << ": MergeDataAndStartSyncing: "
-           << initial_sync_data.size();
+  VLOG(1) << this << ": MergeDataAndStartSyncing: "
+          << initial_sync_data.size();
 
   // Copy all sync items to |unsynced_items|.
   std::set<std::string> unsynced_items;
@@ -450,28 +605,42 @@ syncer::SyncMergeResult AppListSyncableService::MergeDataAndStartSyncing(
   for (syncer::SyncDataList::const_iterator iter = initial_sync_data.begin();
        iter != initial_sync_data.end(); ++iter) {
     const syncer::SyncData& data = *iter;
-    DVLOG(2) << this << "  Initial Sync Item: "
-             << data.GetSpecifics().app_list().item_id()
-             << " Type: " << data.GetSpecifics().app_list().item_type();
+    const std::string& item_id = data.GetSpecifics().app_list().item_id();
+    const sync_pb::AppListSpecifics& specifics = data.GetSpecifics().app_list();
+    DVLOG(2) << this << "  Initial Sync Item: " << item_id
+             << " Type: " << specifics.item_type();
     DCHECK_EQ(syncer::APP_LIST, data.GetDataType());
-    if (ProcessSyncItemSpecifics(data.GetSpecifics().app_list()))
+    if (ProcessSyncItemSpecifics(specifics))
       ++new_items;
     else
       ++updated_items;
-    unsynced_items.erase(data.GetSpecifics().app_list().item_id());
+    if (specifics.item_type() != sync_pb::AppListSpecifics::TYPE_FOLDER &&
+        !IsUnRemovableDefaultApp(item_id) &&
+        !AppIsOem(item_id) &&
+        !AppIsDefault(extension_system_->extension_service(), item_id)) {
+      VLOG(2) << "Syncing non-default item: " << item_id;
+      first_app_list_sync_ = false;
+    }
+    unsynced_items.erase(item_id);
   }
-
   result.set_num_items_after_association(sync_items_.size());
   result.set_num_items_added(new_items);
   result.set_num_items_deleted(0);
   result.set_num_items_modified(updated_items);
 
+  // Initial sync data has been processed, it is safe now to add new sync items.
+  initial_sync_data_processed_ = true;
+
   // Send unsynced items. Does not affect |result|.
   syncer::SyncChangeList change_list;
   for (std::set<std::string>::iterator iter = unsynced_items.begin();
        iter != unsynced_items.end(); ++iter) {
     SyncItem* sync_item = FindSyncItem(*iter);
-    DVLOG(2) << this << " -> SYNC ADD: " << sync_item->ToString();
+    // Sync can cause an item to change folders, causing an unsynced folder
+    // item to be removed.
+    if (!sync_item)
+      continue;
+    VLOG(2) << this << " -> SYNC ADD: " << sync_item->ToString();
     change_list.push_back(SyncChange(FROM_HERE,  SyncChange::ACTION_ADD,
                                      GetSyncDataFromSyncItem(sync_item)));
   }
@@ -492,17 +661,18 @@ void AppListSyncableService::StopSyncing(syncer::ModelType type) {
 
   sync_processor_.reset();
   sync_error_handler_.reset();
+  model_->SetFoldersEnabled(false);
 }
 
 syncer::SyncDataList AppListSyncableService::GetAllSyncData(
     syncer::ModelType type) const {
   DCHECK_EQ(syncer::APP_LIST, type);
 
-  DVLOG(1) << this << ": GetAllSyncData: " << sync_items_.size();
+  VLOG(1) << this << ": GetAllSyncData: " << sync_items_.size();
   syncer::SyncDataList list;
   for (SyncItemMap::const_iterator iter = sync_items_.begin();
        iter != sync_items_.end(); ++iter) {
-    DVLOG(2) << this << " -> SYNC: " << iter->second->ToString();
+    VLOG(2) << this << " -> SYNC: " << iter->second->ToString();
     list.push_back(GetSyncDataFromSyncItem(iter->second));
   }
   return list;
@@ -521,13 +691,13 @@ syncer::SyncError AppListSyncableService::ProcessSyncChanges(
   // Don't observe the model while processing incoming sync changes.
   model_observer_.reset();
 
-  DVLOG(1) << this << ": ProcessSyncChanges: " << change_list.size();
+  VLOG(1) << this << ": ProcessSyncChanges: " << change_list.size();
   for (syncer::SyncChangeList::const_iterator iter = change_list.begin();
        iter != change_list.end(); ++iter) {
     const SyncChange& change = *iter;
-    DVLOG(2) << this << "  Change: "
-             << change.sync_data().GetSpecifics().app_list().item_id()
-             << " (" << change.change_type() << ")";
+    VLOG(2) << this << "  Change: "
+            << change.sync_data().GetSpecifics().app_list().item_id()
+            << " (" << change.change_type() << ")";
     if (change.change_type() == SyncChange::ACTION_ADD ||
         change.change_type() == SyncChange::ACTION_UPDATE) {
       ProcessSyncItemSpecifics(change.sync_data().GetSpecifics().app_list());
@@ -559,7 +729,7 @@ bool AppListSyncableService::ProcessSyncItemSpecifics(
     if (sync_item->item_type == specifics.item_type()) {
       UpdateSyncItemFromSync(specifics, sync_item);
       ProcessExistingSyncItem(sync_item);
-      DVLOG(2) << this << " <- SYNC UPDATE: " << sync_item->ToString();
+      VLOG(2) << this << " <- SYNC UPDATE: " << sync_item->ToString();
       return false;
     }
     // Otherwise, one of the entries should be TYPE_REMOVE_DEFAULT_APP.
@@ -572,8 +742,8 @@ bool AppListSyncableService::ProcessSyncItemSpecifics(
                  << " Deleting item from model!";
       model_->DeleteItem(item_id);
     }
-    DVLOG(2) << this << " - ProcessSyncItem: Delete existing entry: "
-             << sync_item->ToString();
+    VLOG(2) << this << " - ProcessSyncItem: Delete existing entry: "
+            << sync_item->ToString();
     delete sync_item;
     sync_items_.erase(item_id);
   }
@@ -581,12 +751,12 @@ bool AppListSyncableService::ProcessSyncItemSpecifics(
   sync_item = CreateSyncItem(item_id, specifics.item_type());
   UpdateSyncItemFromSync(specifics, sync_item);
   ProcessNewSyncItem(sync_item);
-  DVLOG(2) << this << " <- SYNC ADD: " << sync_item->ToString();
+  VLOG(2) << this << " <- SYNC ADD: " << sync_item->ToString();
   return true;
 }
 
 void AppListSyncableService::ProcessNewSyncItem(SyncItem* sync_item) {
-  DVLOG(2) << "ProcessNewSyncItem: " << sync_item->ToString();
+  VLOG(2) << "ProcessNewSyncItem: " << sync_item->ToString();
   switch (sync_item->item_type) {
     case sync_pb::AppListSpecifics::TYPE_APP: {
       // New apps are added through ExtensionAppModelBuilder.
@@ -595,9 +765,16 @@ void AppListSyncableService::ProcessNewSyncItem(SyncItem* sync_item) {
       return;
     }
     case sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP: {
-      DVLOG(1) << this << ": Uninstall: " << sync_item->ToString();
-      UninstallExtension(extension_system_->extension_service(),
-                         sync_item->item_id);
+      VLOG(1) << this << ": Uninstall: " << sync_item->ToString();
+      if (IsDriveAppSyncId(sync_item->item_id)) {
+        if (drive_app_provider_) {
+          drive_app_provider_->AddUninstalledDriveAppFromSync(
+              GetDriveAppIdFromSyncId(sync_item->item_id));
+        }
+      } else {
+        UninstallExtension(extension_system_->extension_service(),
+                           sync_item->item_id);
+      }
       return;
     }
     case sync_pb::AppListSpecifics::TYPE_FOLDER: {
@@ -621,7 +798,7 @@ void AppListSyncableService::ProcessExistingSyncItem(SyncItem* sync_item) {
       sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP) {
     return;
   }
-  DVLOG(2) << "ProcessExistingSyncItem: " << sync_item->ToString();
+  VLOG(2) << "ProcessExistingSyncItem: " << sync_item->ToString();
   AppListItem* app_item = model_->FindItem(sync_item->item_id);
   DVLOG(2) << " AppItem: " << app_item->ToDebugString();
   if (!app_item) {
@@ -630,8 +807,9 @@ void AppListSyncableService::ProcessExistingSyncItem(SyncItem* sync_item) {
   }
   // This is the only place where sync can cause an item to change folders.
   if (app_list::switches::IsFolderUIEnabled() &&
-      app_item->folder_id() != sync_item->parent_id) {
-    DVLOG(2) << " Moving Item To Folder: " << sync_item->parent_id;
+      app_item->folder_id() != sync_item->parent_id &&
+      !AppIsOem(app_item->id())) {
+    VLOG(2) << " Moving Item To Folder: " << sync_item->parent_id;
     model_->MoveItemToFolder(app_item, sync_item->parent_id);
   }
   UpdateAppItemFromSyncItem(sync_item, app_item);
@@ -640,15 +818,23 @@ void AppListSyncableService::ProcessExistingSyncItem(SyncItem* sync_item) {
 void AppListSyncableService::UpdateAppItemFromSyncItem(
     const AppListSyncableService::SyncItem* sync_item,
     AppListItem* app_item) {
+  VLOG(2) << this << " UpdateAppItemFromSyncItem: " << sync_item->ToString();
   if (!app_item->position().Equals(sync_item->item_ordinal))
     model_->SetItemPosition(app_item, sync_item->item_ordinal);
+  // Only update the item name if it is a Folder or the name is empty.
+  if (sync_item->item_name != app_item->name() &&
+      sync_item->item_id != kOemFolderId &&
+      (app_item->GetItemType() == AppListFolderItem::kItemType ||
+       app_item->name().empty())) {
+    model_->SetItemName(app_item, sync_item->item_name);
+  }
 }
 
 bool AppListSyncableService::SyncStarted() {
   if (sync_processor_.get())
     return true;
   if (flare_.is_null()) {
-    DVLOG(2) << this << ": SyncStarted: Flare.";
+    VLOG(1) << this << ": SyncStarted: Flare.";
     flare_ = sync_start_util::GetFlareForSyncableService(profile_->GetPath());
     flare_.Run(syncer::APP_LIST);
   }
@@ -663,10 +849,20 @@ void AppListSyncableService::SendSyncChange(
              << sync_item->ToString();
     return;
   }
+  if (!initial_sync_data_processed_ &&
+      sync_change_type == SyncChange::ACTION_ADD) {
+    // This can occur if an initial item is created before its folder item.
+    // A sync item should already exist for the folder, so we do not want to
+    // send an ADD event, since that would trigger a CHECK in the sync code.
+    DCHECK(sync_item->item_type == sync_pb::AppListSpecifics::TYPE_FOLDER);
+    DVLOG(2) << this << " - SendSyncChange: ADD before initial data processed: "
+             << sync_item->ToString();
+    return;
+  }
   if (sync_change_type == SyncChange::ACTION_ADD)
-    DVLOG(2) << this << " -> SYNC ADD: " << sync_item->ToString();
+    VLOG(2) << this << " -> SYNC ADD: " << sync_item->ToString();
   else
-    DVLOG(2) << this << " -> SYNC UPDATE: " << sync_item->ToString();
+    VLOG(2) << this << " -> SYNC UPDATE: " << sync_item->ToString();
   SyncChange sync_change(FROM_HERE, sync_change_type,
                          GetSyncDataFromSyncItem(sync_item));
   sync_processor_->ProcessSyncChanges(
@@ -698,19 +894,96 @@ void AppListSyncableService::DeleteSyncItemSpecifics(
     LOG(ERROR) << "Delete AppList item with empty ID";
     return;
   }
-  DVLOG(2) << this << ": DeleteSyncItemSpecifics: " << item_id.substr(0, 8);
+  VLOG(2) << this << ": DeleteSyncItemSpecifics: " << item_id.substr(0, 8);
   SyncItemMap::iterator iter = sync_items_.find(item_id);
   if (iter == sync_items_.end())
     return;
   sync_pb::AppListSpecifics::AppListItemType item_type =
       iter->second->item_type;
-  DVLOG(2) << this << " <- SYNC DELETE: " << iter->second->ToString();
+  VLOG(2) << this << " <- SYNC DELETE: " << iter->second->ToString();
   delete iter->second;
   sync_items_.erase(iter);
   // Only delete apps from the model. Folders will be deleted when all
   // children have been deleted.
-  if (item_type == sync_pb::AppListSpecifics::TYPE_APP)
+  if (item_type == sync_pb::AppListSpecifics::TYPE_APP) {
     model_->DeleteItem(item_id);
+  } else if (item_type == sync_pb::AppListSpecifics::TYPE_REMOVE_DEFAULT_APP) {
+    if (IsDriveAppSyncId(item_id) && drive_app_provider_) {
+      drive_app_provider_->RemoveUninstalledDriveAppFromSync(
+          GetDriveAppIdFromSyncId(item_id));
+    }
+  }
+}
+
+std::string AppListSyncableService::FindOrCreateOemFolder() {
+  AppListFolderItem* oem_folder = model_->FindFolderItem(kOemFolderId);
+  if (!oem_folder) {
+    scoped_ptr<AppListFolderItem> new_folder(new AppListFolderItem(
+        kOemFolderId, AppListFolderItem::FOLDER_TYPE_OEM));
+    oem_folder =
+        static_cast<AppListFolderItem*>(model_->AddItem(new_folder.Pass()));
+    SyncItem* oem_sync_item = FindSyncItem(kOemFolderId);
+    if (oem_sync_item) {
+      VLOG(1) << "Creating OEM folder from existing sync item: "
+               << oem_sync_item->item_ordinal.ToDebugString();
+      model_->SetItemPosition(oem_folder, oem_sync_item->item_ordinal);
+    } else {
+      model_->SetItemPosition(oem_folder, GetOemFolderPos());
+      // Do not create a sync item for the OEM folder here, do it in
+      // ResolveFolderPositions() when the item position is finalized.
+    }
+  }
+  model_->SetItemName(oem_folder, oem_folder_name_);
+  return oem_folder->id();
+}
+
+syncer::StringOrdinal AppListSyncableService::GetOemFolderPos() {
+  VLOG(1) << "GetOemFolderPos: " << first_app_list_sync_;
+  if (!first_app_list_sync_) {
+    VLOG(1) << "Sync items exist, placing OEM folder at end.";
+    syncer::StringOrdinal last;
+    for (SyncItemMap::iterator iter = sync_items_.begin();
+         iter != sync_items_.end(); ++iter) {
+      SyncItem* sync_item = iter->second;
+      if (!last.IsValid() || sync_item->item_ordinal.GreaterThan(last))
+        last = sync_item->item_ordinal;
+    }
+    return last.CreateAfter();
+  }
+
+  // Place the OEM folder just after the web store, which should always be
+  // followed by a pre-installed app (e.g. Search), so the poosition should be
+  // stable. TODO(stevenjb): consider explicitly setting the OEM folder location
+  // along with the name in ServicesCustomizationDocument::SetOemFolderName().
+  AppListItemList* item_list = model_->top_level_item_list();
+  if (item_list->item_count() == 0)
+    return syncer::StringOrdinal();
+
+  size_t oem_index = 0;
+  for (; oem_index < item_list->item_count() - 1; ++oem_index) {
+    AppListItem* cur_item = item_list->item_at(oem_index);
+    if (cur_item->id() == extensions::kWebStoreAppId)
+      break;
+  }
+  syncer::StringOrdinal oem_ordinal;
+  AppListItem* prev = item_list->item_at(oem_index);
+  if (oem_index + 1 < item_list->item_count()) {
+    AppListItem* next = item_list->item_at(oem_index + 1);
+    oem_ordinal = prev->position().CreateBetween(next->position());
+  } else {
+    oem_ordinal = prev->position().CreateAfter();
+  }
+  VLOG(1) << "Placing OEM Folder at: " << oem_index
+          << " position: " << oem_ordinal.ToDebugString();
+  return oem_ordinal;
+}
+
+bool AppListSyncableService::AppIsOem(const std::string& id) {
+  if (!extension_system_->extension_service())
+    return false;
+  const extensions::Extension* extension =
+      extension_system_->extension_service()->GetExtensionById(id, true);
+  return extension && extension->was_installed_by_oem();
 }
 
 std::string AppListSyncableService::SyncItem::ToString() const {