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

Unified Diff: extensions/browser/info_map.h

Issue 2686463003: [Extensions] Fix a data race in ChromeExtensionMessageFilter. (Closed)
Patch Set: [Extensions] Fix a data race in ChromeExtensionMessageFilter. Created 3 years, 10 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 | « chrome/browser/renderer_host/chrome_extension_message_filter.cc ('k') | extensions/browser/info_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/info_map.h
diff --git a/extensions/browser/info_map.h b/extensions/browser/info_map.h
index 2deafec5e82b819e903eaf7a46d778cf248a4455..c8950074546a859abc183ae5cac8b5267941301f 100644
--- a/extensions/browser/info_map.h
+++ b/extensions/browser/info_map.h
@@ -30,10 +30,8 @@ class InfoMap : public base::RefCountedThreadSafe<InfoMap> {
public:
InfoMap();
- const ExtensionSet& extensions() const { return extensions_; }
- const ExtensionSet& disabled_extensions() const {
- return disabled_extensions_;
- }
+ const ExtensionSet& extensions() const;
+ const ExtensionSet& disabled_extensions() const;
// Information about which extensions are assigned to which render processes.
const ProcessMap& process_map() const { return process_map_; }
« no previous file with comments | « chrome/browser/renderer_host/chrome_extension_message_filter.cc ('k') | extensions/browser/info_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698