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

Unified Diff: webkit/plugins/npapi/plugin_list.cc

Issue 10669038: base: Remove dereference structure operator (i.e ->) from ScopedVector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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 | « ui/base/models/tree_node_model.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_list.cc
diff --git a/webkit/plugins/npapi/plugin_list.cc b/webkit/plugins/npapi/plugin_list.cc
index 83b3f62ebee131ab35457897468515bc3fe855ad..0ec90a32cd1f0e4658495b6f1442d6f6a7f60935 100644
--- a/webkit/plugins/npapi/plugin_list.cc
+++ b/webkit/plugins/npapi/plugin_list.cc
@@ -535,7 +535,7 @@ void PluginList::GetPluginGroups(
PluginGroup* PluginList::GetPluginGroup(
const webkit::WebPluginInfo& web_plugin_info) {
base::AutoLock lock(lock_);
- for (size_t i = 0; i < plugin_groups_->size(); ++i) {
+ for (size_t i = 0; i < plugin_groups_.size(); ++i) {
const std::vector<webkit::WebPluginInfo>& plugins =
plugin_groups_[i]->web_plugin_infos();
for (size_t j = 0; j < plugins.size(); ++j) {
@@ -561,7 +561,7 @@ void PluginList::AddHardcodedPluginGroups(
const PluginGroupDefinition* group_definitions,
size_t num_group_definitions) {
for (size_t i = 0; i < num_group_definitions; ++i) {
- hardcoded_plugin_groups_->push_back(
+ hardcoded_plugin_groups_.push_back(
PluginGroup::FromPluginGroupDefinition(group_definitions[i]));
}
}
« no previous file with comments | « ui/base/models/tree_node_model.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698