HomeSort by relevance Sort by last modified time
    Searched full:index_stack (Results 1 - 1 of 1) sorted by null

  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.cc 103 // of |node|. |index_stack| stores index values for the parent levels.
104 std::stack<int> index_stack; local
105 index_stack.push(0); // For the final pop. It's never used.
109 // The top of |index_stack| should always be |node|'s index.
111 index_stack.top()));
117 index = index_stack.top() + 1; // (top() + 0) was what we removed.
118 index_stack.pop();
123 index_stack.push(index);
128 DCHECK(index_stack.empty()); // Nothing should be left on the stack.

Completed in 37 milliseconds