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

Unified Diff: chrome/browser/extensions/extension_system_impl.h

Issue 2881453002: DNR Prototype: With flatbuffers
Patch Set: -- Created 3 years, 6 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 | « no previous file | chrome/browser/extensions/extension_system_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_system_impl.h
diff --git a/chrome/browser/extensions/extension_system_impl.h b/chrome/browser/extensions/extension_system_impl.h
index 68c6b64114e795b7b19d389393d3240fdeeff672..42ec20da9303227c668369dc6d6ae8c86bc3f211 100644
--- a/chrome/browser/extensions/extension_system_impl.h
+++ b/chrome/browser/extensions/extension_system_impl.h
@@ -70,6 +70,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
const OneShotEvent& ready() const override;
ContentVerifier* content_verifier() override; // shared
+ declarative_net_request::RulesMonitor* rules_monitor() override; // shared
std::unique_ptr<ExtensionSet> GetDependentExtensions(
const Extension* extension) override;
void InstallUpdate(const std::string& extension_id,
@@ -108,6 +109,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
AppSorting* app_sorting();
const OneShotEvent& ready() const { return ready_; }
ContentVerifier* content_verifier();
+ declarative_net_request::RulesMonitor* rules_monitor();
private:
// content::NotificationObserver implementation.
@@ -143,6 +145,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
// For verifying the contents of extensions read from disk.
scoped_refptr<ContentVerifier> content_verifier_;
+ std::unique_ptr<declarative_net_request::RulesMonitor> rules_monitor_;
std::unique_ptr<UninstallPingSender> uninstall_ping_sender_;
#if defined(OS_CHROMEOS)
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698