| Index: chrome/browser/sync/sessions/status_controller.h
|
| diff --git a/chrome/browser/sync/sessions/status_controller.h b/chrome/browser/sync/sessions/status_controller.h
|
| index 651e90c6acedd9c6b09f32dc4d8f2c6d9cf4f2f5..a1287fd8c4494b5f95e95e2cc9fe2513dc977334 100644
|
| --- a/chrome/browser/sync/sessions/status_controller.h
|
| +++ b/chrome/browser/sync/sessions/status_controller.h
|
| @@ -147,17 +147,17 @@ class StatusController {
|
|
|
| // If a GetUpdates for any data type resulted in downloading an update that
|
| // is in conflict, this method returns true.
|
| - // Note: this includes non-blocking conflicts.
|
| + // Note: this includes unresolvable conflicts.
|
| bool HasConflictingUpdates() const;
|
|
|
| - // Aggregate sum of ConflictingItemSize() over all ConflictProgress objects
|
| - // (one for each ModelSafeGroup currently in-use).
|
| - // Note: this does not include non-blocking conflicts.
|
| - int TotalNumBlockingConflictingItems() const;
|
| + // Aggregate sum of SimpleConflictingItemSize() over all ConflictProgress
|
| + // objects (one for each ModelSafeGroup currently in-use).
|
| + // Note: this does not include unresolvable conflicts.
|
| + int TotalNumSimpleConflictingItems() const;
|
|
|
| - // Aggregate sum of ConflictingItemSize() and NonblockingConflictingItemsSize
|
| - // over all ConflictProgress objects (one for each ModelSafeGroup currently
|
| - // in-use).
|
| + // Aggregate sum of SimpleConflictingItemSize() and other
|
| + // ${Type}ConflictingItemSize() methods over all ConflictProgress objects (one
|
| + // for each ModelSafeGroup currently in-use).
|
| int TotalNumConflictingItems() const;
|
|
|
| // Returns the number of updates received from the sync server.
|
|
|