Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5036)

Unified Diff: chrome/browser/sync/sessions/session_state.h

Issue 8638001: [Sync] Made some sync session member functions const (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Constify a few more, sync to head Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/sessions/session_state.h
diff --git a/chrome/browser/sync/sessions/session_state.h b/chrome/browser/sync/sessions/session_state.h
index 85fd9a0bec3ee98ccba0ea7dcceed80d6b21bb07..99a9cb3a86de3e2c8211699ae08999bc622051d7 100644
--- a/chrome/browser/sync/sessions/session_state.h
+++ b/chrome/browser/sync/sessions/session_state.h
@@ -177,8 +177,7 @@ class ConflictProgress {
void AddConflictingItemById(const syncable::Id& the_id);
void EraseConflictingItemById(const syncable::Id& the_id);
int ConflictingItemsSize() const { return conflicting_item_ids_.size(); }
- std::set<syncable::Id>::iterator ConflictingItemsBegin();
- std::set<syncable::Id>::const_iterator ConflictingItemsBeginConst() const;
+ std::set<syncable::Id>::const_iterator ConflictingItemsBegin() const;
std::set<syncable::Id>::const_iterator ConflictingItemsEnd() const;
// Mutators for nonblocking conflicting items (see description below).

Powered by Google App Engine
This is Rietveld 408576698