| Index: sync/engine/non_blocking_type_processor_core.cc
|
| diff --git a/sync/engine/non_blocking_type_processor_core.cc b/sync/engine/non_blocking_type_processor_core.cc
|
| index fdb9e10c1329b27eda9fa97dec1707adafa87d49..c1bc60ad0d7adc4bca9ab4617185aa6b577e111f 100644
|
| --- a/sync/engine/non_blocking_type_processor_core.cc
|
| +++ b/sync/engine/non_blocking_type_processor_core.cc
|
| @@ -33,17 +33,25 @@ void NonBlockingTypeProcessorCore::GetDownloadProgress(
|
| sync_pb::DataTypeProgressMarker* progress_marker) const {
|
| DCHECK(CalledOnValidThread());
|
| // TODO(rlarocque): Implement this properly. crbug.com/351005.
|
| - VLOG(1) << "Getting progress for: " << ModelTypeToString(type_);
|
| + DVLOG(1) << "Getting progress for: " << ModelTypeToString(type_);
|
| *progress_marker = progress_marker_;
|
| }
|
|
|
| +void NonBlockingTypeProcessorCore::GetDataTypeContext(
|
| + sync_pb::DataTypeContext* context) const {
|
| + // TODO(rlarocque): Implement this properly. crbug.com/351005.
|
| + DVLOG(1) << "Getting context for: " << ModelTypeToString(type_);
|
| + context->Clear();
|
| +}
|
| +
|
| void NonBlockingTypeProcessorCore::ProcessGetUpdatesResponse(
|
| const sync_pb::DataTypeProgressMarker& progress_marker,
|
| + const sync_pb::DataTypeContext& mutated_context,
|
| const SyncEntityList& applicable_updates,
|
| sessions::StatusController* status) {
|
| DCHECK(CalledOnValidThread());
|
| // TODO(rlarocque): Implement this properly. crbug.com/351005.
|
| - VLOG(1) << "Processing updates response for: " << ModelTypeToString(type_);
|
| + DVLOG(1) << "Processing updates response for: " << ModelTypeToString(type_);
|
| progress_marker_ = progress_marker;
|
| }
|
|
|
| @@ -51,7 +59,7 @@ void NonBlockingTypeProcessorCore::ApplyUpdates(
|
| sessions::StatusController* status) {
|
| DCHECK(CalledOnValidThread());
|
| // TODO(rlarocque): Implement this properly. crbug.com/351005.
|
| - VLOG(1) << "Applying updates for: " << ModelTypeToString(type_);
|
| + DVLOG(1) << "Applying updates for: " << ModelTypeToString(type_);
|
| }
|
|
|
| void NonBlockingTypeProcessorCore::PassiveApplyUpdates(
|
| @@ -66,7 +74,7 @@ scoped_ptr<CommitContribution>
|
| NonBlockingTypeProcessorCore::GetContribution(size_t max_entries) {
|
| DCHECK(CalledOnValidThread());
|
| // TODO(rlarocque): Implement this properly. crbug.com/351005.
|
| - VLOG(1) << "Getting commit contribution for: " << ModelTypeToString(type_);
|
| + DVLOG(1) << "Getting commit contribution for: " << ModelTypeToString(type_);
|
| return scoped_ptr<CommitContribution>();
|
| }
|
|
|
|
|