Changed a DCHECK() that checked two conditions two two DCHECK()s that check one condition each.

BUG=
TEST=


Review URL: https://chromiumcodereview.appspot.com/10833038

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148799 0039d316-1c4b-4281-b951-d872f2087c98
parent 10b132b0
......@@ -1613,7 +1613,8 @@ void TabDragController::ResetSelection(TabStripModel* model) {
}
void TabDragController::RevertDragAt(size_t drag_index) {
DCHECK(started_drag_ && source_tabstrip_);
DCHECK(started_drag_);
DCHECK(source_tabstrip_);
TabDragData* data = &(drag_data_[drag_index]);
if (attached_tabstrip_) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment