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

Unified Diff: extensions/browser/extension_user_script_loader.h

Issue 2227193002: Make UserScript non-copyable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: uplaod with base Created 4 years, 4 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
Index: extensions/browser/extension_user_script_loader.h
diff --git a/extensions/browser/extension_user_script_loader.h b/extensions/browser/extension_user_script_loader.h
index 05c9d18403236bd010fd7d2289a8ded32d020c82..aed1f08f4ad4e072a4b059e46324c4ffe456199e 100644
--- a/extensions/browser/extension_user_script_loader.h
+++ b/extensions/browser/extension_user_script_loader.h
@@ -36,11 +36,11 @@ class ExtensionUserScriptLoader : public UserScriptLoader,
// A wrapper around the method to load user scripts, which is normally run on
// the file thread. Exposed only for tests.
- void LoadScriptsForTest(UserScriptList* user_scripts);
+ void LoadScriptsForTest(BrowserUserScriptList* user_scripts);
private:
// UserScriptLoader:
- void LoadScripts(std::unique_ptr<UserScriptList> user_scripts,
+ void LoadScripts(std::unique_ptr<BrowserUserScriptList> user_scripts,
const std::set<HostID>& changed_hosts,
const std::set<int>& added_script_ids,
LoadScriptsCallback callback) override;

Powered by Google App Engine
This is Rietveld 408576698