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

Unified Diff: extensions/browser/script_executor.h

Issue 1162943002: Replace more ObserverList with base::ObserverList. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@observer
Patch Set: Created 5 years, 7 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/browser/process_manager.h ('k') | extensions/browser/script_executor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/script_executor.h
diff --git a/extensions/browser/script_executor.h b/extensions/browser/script_executor.h
index 322e9bbb881ca05a377dee9bfae38a3bc0b6fd58..4f81b78fb62dfe17964aa2600e57b5cbf0c4c6fe 100644
--- a/extensions/browser/script_executor.h
+++ b/extensions/browser/script_executor.h
@@ -32,7 +32,7 @@ class ScriptExecutor {
content::WebContents* web_contents,
// |script_observers| is assumed to be owned by |this|'s owner, and in
// such a way that |this| is destroyed first.
- ObserverList<ScriptExecutionObserver>* script_observers);
+ base::ObserverList<ScriptExecutionObserver>* script_observers);
~ScriptExecutor();
@@ -105,7 +105,7 @@ class ScriptExecutor {
content::WebContents* web_contents_;
- ObserverList<ScriptExecutionObserver>* script_observers_;
+ base::ObserverList<ScriptExecutionObserver>* script_observers_;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/process_manager.h ('k') | extensions/browser/script_executor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698