| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/extensions/api/declarative_content/chrome_content_rules
_registry.h" | 5 #include "chrome/browser/extensions/api/declarative_content/chrome_content_rules
_registry.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/chrome_notification_types.h" | 9 #include "chrome/browser/chrome_notification_types.h" |
| 10 #include "chrome/browser/extensions/api/declarative_content/content_constants.h" | 10 #include "chrome/browser/extensions/api/declarative_content/content_constants.h" |
| 11 #include "chrome/browser/extensions/extension_util.h" | 11 #include "chrome/browser/extensions/extension_util.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_iterator.h" | |
| 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 14 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 16 #include "content/public/browser/navigation_details.h" | 15 #include "content/public/browser/navigation_details.h" |
| 17 #include "content/public/browser/notification_service.h" | 16 #include "content/public/browser/notification_service.h" |
| 18 #include "content/public/browser/notification_source.h" | 17 #include "content/public/browser/notification_source.h" |
| 19 #include "content/public/browser/web_contents.h" | 18 #include "content/public/browser/web_contents.h" |
| 20 #include "extensions/browser/api/declarative/rules_registry_service.h" | 19 #include "extensions/browser/api/declarative/rules_registry_service.h" |
| 21 #include "extensions/browser/extension_registry.h" | 20 #include "extensions/browser/extension_registry.h" |
| 22 #include "extensions/browser/extension_system.h" | 21 #include "extensions/browser/extension_system.h" |
| 23 | 22 |
| 24 namespace extensions { | 23 namespace extensions { |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 size_t count = 0; | 421 size_t count = 0; |
| 423 for (const auto& web_contents_rules_pair : active_rules_) | 422 for (const auto& web_contents_rules_pair : active_rules_) |
| 424 count += web_contents_rules_pair.second.size(); | 423 count += web_contents_rules_pair.second.size(); |
| 425 return count; | 424 return count; |
| 426 } | 425 } |
| 427 | 426 |
| 428 ChromeContentRulesRegistry::~ChromeContentRulesRegistry() { | 427 ChromeContentRulesRegistry::~ChromeContentRulesRegistry() { |
| 429 } | 428 } |
| 430 | 429 |
| 431 } // namespace extensions | 430 } // namespace extensions |
| OLD | NEW |