| Index: chrome/browser/sync/glue/theme_change_processor.h
|
| diff --git a/chrome/browser/sync/glue/theme_change_processor.h b/chrome/browser/sync/glue/theme_change_processor.h
|
| index b7c3c9ea40cf6d75cfd564282a0d55c6b6004829..431a92b24b9b3c04704ab1238871ad68fa6facc6 100644
|
| --- a/chrome/browser/sync/glue/theme_change_processor.h
|
| +++ b/chrome/browser/sync/glue/theme_change_processor.h
|
| @@ -7,8 +7,8 @@
|
| #pragma once
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/compiler_specific.h"
|
| #include "chrome/browser/sync/glue/change_processor.h"
|
| -#include "chrome/browser/sync/internal_api/sync_manager.h"
|
| #include "content/common/content_notification_types.h"
|
| #include "content/common/notification_observer.h"
|
| #include "content/common/notification_registrar.h"
|
| @@ -35,19 +35,18 @@ class ThemeChangeProcessor : public ChangeProcessor,
|
| // ThemeService -> sync_api model change application.
|
| virtual void Observe(int type,
|
| const NotificationSource& source,
|
| - const NotificationDetails& details);
|
| + const NotificationDetails& details) OVERRIDE;
|
|
|
| // ChangeProcessor implementation.
|
| // sync_api model -> ThemeService change application.
|
| virtual void ApplyChangesFromSyncModel(
|
| const sync_api::BaseTransaction* trans,
|
| - const sync_api::SyncManager::ChangeRecord* changes,
|
| - int change_count);
|
| + const sync_api::ImmutableChangeRecordList& changes) OVERRIDE;
|
|
|
| protected:
|
| // ChangeProcessor implementation.
|
| - virtual void StartImpl(Profile* profile);
|
| - virtual void StopImpl();
|
| + virtual void StartImpl(Profile* profile) OVERRIDE;
|
| + virtual void StopImpl() OVERRIDE;
|
|
|
| private:
|
| void StartObserving();
|
|
|