| Index: chrome/browser/sync/glue/data_type_manager_impl.h
|
| diff --git a/chrome/browser/sync/glue/data_type_manager_impl.h b/chrome/browser/sync/glue/data_type_manager_impl.h
|
| index 97d6ea975dca14a22c3453d9797b1fdf3c78ca4e..8c79654c3a9e259c0abdd1dac6fe3d49c22e35ef 100644
|
| --- a/chrome/browser/sync/glue/data_type_manager_impl.h
|
| +++ b/chrome/browser/sync/glue/data_type_manager_impl.h
|
| @@ -13,6 +13,7 @@
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/task.h"
|
| #include "base/time.h"
|
| @@ -30,14 +31,15 @@ class DataTypeManagerImpl : public DataTypeManager {
|
|
|
| // DataTypeManager interface.
|
| virtual void Configure(const TypeSet& desired_types,
|
| - sync_api::ConfigureReason reason);
|
| + sync_api::ConfigureReason reason) OVERRIDE;
|
|
|
| // Needed only for backend migration.
|
| - virtual void ConfigureWithoutNigori(const TypeSet& desired_types,
|
| - sync_api::ConfigureReason reason);
|
| + virtual void ConfigureWithoutNigori(
|
| + const TypeSet& desired_types,
|
| + sync_api::ConfigureReason reason) OVERRIDE;
|
|
|
| - virtual void Stop();
|
| - virtual State state();
|
| + virtual void Stop() OVERRIDE;
|
| + virtual State state() OVERRIDE;
|
|
|
| private:
|
| // Starts the next data type in the kStartOrder list, indicated by
|
|
|