Index: chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.h |
diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.h b/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.h |
index 9746a9b7d7f5ece1825898a539dfdf264d9d5444..5d395643001da3800101d5bcadfc6f7bcca88314 100644 |
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.h |
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.h |
@@ -76,13 +76,13 @@ class WebRequestRulesRegistry : public RulesRegistryWithCache { |
// TODO(battre): This will become an implementation detail, because we need |
// a way to also execute the actions of the rules. |
std::set<const WebRequestRule*> GetMatches( |
- const DeclarativeWebRequestData& request_data); |
+ DeclarativeWebRequestData* request_data); |
// Returns which modifications should be executed on the network request |
// according to the rules registered in this registry. |
std::list<LinkedPtrEventResponseDelta> CreateDeltas( |
const ExtensionInfoMap* extension_info_map, |
- const DeclarativeWebRequestData& request_data, |
+ DeclarativeWebRequestData* request_data, |
bool crosses_incognito); |
// Implementation of RulesRegistryWithCache: |