This source file includes following definitions.
- installed_bookmark_observer_
- type
- Observe
- StartModels
- CleanUpState
- CreateSyncComponents
- BookmarkModelChanged
- BookmarkModelLoaded
- BookmarkModelBeingDeleted
- DependentsLoaded
#include "chrome/browser/sync/glue/bookmark_data_type_controller.h"
#include "base/metrics/histogram.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/history/history_service.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h"
#include "chrome/browser/sync/profile_sync_components_factory.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
using content::BrowserThread;
namespace browser_sync {
BookmarkDataTypeController::BookmarkDataTypeController(
ProfileSyncComponentsFactory* profile_sync_factory,
Profile* profile,
ProfileSyncService* sync_service)
: FrontendDataTypeController(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
base::Bind(&ChromeReportUnrecoverableError),
profile_sync_factory,
profile,
sync_service),
bookmark_model_(NULL),
installed_bookmark_observer_(false) {
}
syncer::ModelType BookmarkDataTypeController::type() const {
return syncer::BOOKMARKS;
}
void BookmarkDataTypeController::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK_EQ(state_, MODEL_STARTING);
DCHECK_EQ(chrome::NOTIFICATION_HISTORY_LOADED, type);
if (!DependentsLoaded())
return;
bookmark_model_->RemoveObserver(this);
installed_bookmark_observer_ = false;
registrar_.RemoveAll();
OnModelLoaded();
}
BookmarkDataTypeController::~BookmarkDataTypeController() {
if (installed_bookmark_observer_ && bookmark_model_) {
DCHECK(profile_);
bookmark_model_->RemoveObserver(this);
}
}
bool BookmarkDataTypeController::StartModels() {
bookmark_model_ = BookmarkModelFactory::GetForProfile(profile_);
if (!DependentsLoaded()) {
bookmark_model_->AddObserver(this);
installed_bookmark_observer_ = true;
registrar_.Add(this, chrome::NOTIFICATION_HISTORY_LOADED,
content::Source<Profile>(sync_service_->profile()));
return false;
}
return true;
}
void BookmarkDataTypeController::CleanUpState() {
registrar_.RemoveAll();
if (bookmark_model_ && installed_bookmark_observer_) {
bookmark_model_->RemoveObserver(this);
installed_bookmark_observer_ = false;
}
}
void BookmarkDataTypeController::CreateSyncComponents() {
ProfileSyncComponentsFactory::SyncComponents sync_components =
profile_sync_factory_->CreateBookmarkSyncComponents(sync_service_,
this);
set_model_associator(sync_components.model_associator);
set_change_processor(sync_components.change_processor);
}
void BookmarkDataTypeController::BookmarkModelChanged() {
}
void BookmarkDataTypeController::BookmarkModelLoaded(BookmarkModel* model,
bool ids_reassigned) {
DCHECK(model->loaded());
model->RemoveObserver(this);
installed_bookmark_observer_ = false;
if (!DependentsLoaded())
return;
registrar_.RemoveAll();
OnModelLoaded();
}
void BookmarkDataTypeController::BookmarkModelBeingDeleted(
BookmarkModel* model) {
installed_bookmark_observer_ = false;
}
bool BookmarkDataTypeController::DependentsLoaded() {
if (!bookmark_model_ || !bookmark_model_->loaded())
return false;
HistoryService* history = HistoryServiceFactory::GetForProfile(
profile_, Profile::EXPLICIT_ACCESS);
if (!history || !history->BackendLoaded())
return false;
return true;
}
}