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

Unified Diff: extensions/renderer/user_script_set_manager.h

Issue 420543002: Declarative content scripts: Browser-side: per-extension shared memory regions (lazily loaded) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor UserScriptMaster into UserScriptLoader, managed by SharedUserScriptMaster and DeclarativeU… Created 6 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/renderer/user_script_set_manager.h
diff --git a/extensions/renderer/user_script_set_manager.h b/extensions/renderer/user_script_set_manager.h
index 335312ccfa6afae977f9589084c11a8546d733d1..de6d03b7ba03564ccc493669dbd26e55c258ca67 100644
--- a/extensions/renderer/user_script_set_manager.h
+++ b/extensions/renderer/user_script_set_manager.h
@@ -59,15 +59,15 @@ class UserScriptSetManager : public content::RenderProcessObserver {
const UserScriptSet* GetProgrammaticScriptsByExtension(
const ExtensionId& extensionId);
- // Put all injections from |static_scripts| and each of
- // |programmatic_scripts_| into |injections|.
+ // Put all injections from |static_scripts| and each of |programmatic_scripts|
+ // into |injections|.
void GetAllInjections(ScopedVector<ScriptInjection>* injections,
blink::WebFrame* web_frame,
int tab_id,
UserScript::RunLocation run_location);
// Get active extension IDs from |static_scripts| and each of
- // |programmatic_scripts_|.
+ // |programmatic_scripts|.
void GetAllActiveExtensionIds(std::set<std::string>* ids) const;
const UserScriptSet* static_scripts() const { return &static_scripts_; }

Powered by Google App Engine
This is Rietveld 408576698