Index: chrome/browser/ui/gtk/location_bar_view_gtk.cc |
=================================================================== |
--- chrome/browser/ui/gtk/location_bar_view_gtk.cc (revision 113231) |
+++ chrome/browser/ui/gtk/location_bar_view_gtk.cc (working copy) |
@@ -642,9 +642,10 @@ |
return; |
// Find all the page actions. |
- for (size_t i = 0; i < service->extensions()->size(); ++i) { |
- if (service->extensions()->at(i)->page_action()) |
- page_actions.push_back(service->extensions()->at(i)->page_action()); |
+ for (ExtensionSet::const_iterator it = service->extensions()->begin(); |
+ it != service->extensions()->end(); ++it) { |
+ if ((*it)->page_action()) |
+ page_actions.push_back((*it)->page_action()); |
} |
// Initialize on the first call, or re-inialize if more extensions have been |
Property changes on: chrome/browser/ui/gtk/location_bar_view_gtk.cc |
___________________________________________________________________ |
Deleted: svn:mergeinfo |