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

Unified Diff: chrome/browser/gtk/blocked_popup_container_view_gtk.cc

Issue 259050: Fix disabled DCHECK by giving kImpossibleNumberOfPopups real storage.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 months 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
« no previous file with comments | « chrome/browser/blocked_popup_container.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/blocked_popup_container_view_gtk.cc
===================================================================
--- chrome/browser/gtk/blocked_popup_container_view_gtk.cc (revision 27950)
+++ chrome/browser/gtk/blocked_popup_container_view_gtk.cc (working copy)
@@ -153,7 +153,7 @@
// |id| shouldn't be == kImpossibleNumberOfPopups since the popups end before
// this and the hosts start after it. (If it is used, it is as a separator.)
- //DCHECK_NE(id_size_t, BlockedPopupContainer::kImpossibleNumberOfPopups);
+ DCHECK_NE(id_size_t, BlockedPopupContainer::kImpossibleNumberOfPopups);
id_size_t -= BlockedPopupContainer::kImpossibleNumberOfPopups + 1;
// Is this a click on a host?
« no previous file with comments | « chrome/browser/blocked_popup_container.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698