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

Unified Diff: extensions/renderer/user_script_set_manager.cc

Issue 2193093002: [UserScript cleanup] Remove use of ScopedVector from UserScriptSet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « extensions/renderer/user_script_set_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/user_script_set_manager.cc
diff --git a/extensions/renderer/user_script_set_manager.cc b/extensions/renderer/user_script_set_manager.cc
index 86fcc64202b5a77b145142f3ac30703bc32e0a51..18a5f6ea6dd61e00035abf2dfe0ecf527ed4a772 100644
--- a/extensions/renderer/user_script_set_manager.cc
+++ b/extensions/renderer/user_script_set_manager.cc
@@ -149,10 +149,8 @@ void UserScriptSetManager::OnUpdateUserScripts(
if (scripts->UpdateUserScripts(shared_memory,
*effective_hosts,
whitelisted_only)) {
- FOR_EACH_OBSERVER(
- Observer,
- observers_,
- OnUserScriptsUpdated(*effective_hosts, scripts->scripts()));
+ FOR_EACH_OBSERVER(Observer, observers_,
+ OnUserScriptsUpdated(*effective_hosts));
}
}
« no previous file with comments | « extensions/renderer/user_script_set_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698