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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 const ExtensionIdSet& unchanged); | 542 const ExtensionIdSet& unchanged); |
543 | 543 |
544 void UpdateGreylistedExtensions( | 544 void UpdateGreylistedExtensions( |
545 const ExtensionIdSet& greylist, | 545 const ExtensionIdSet& greylist, |
546 const ExtensionIdSet& unchanged, | 546 const ExtensionIdSet& unchanged, |
547 const extensions::Blacklist::BlacklistStateMap& state_map); | 547 const extensions::Blacklist::BlacklistStateMap& state_map); |
548 | 548 |
549 // Used only by test code. | 549 // Used only by test code. |
550 void UnloadAllExtensionsInternal(); | 550 void UnloadAllExtensionsInternal(); |
551 | 551 |
552 // Disable apps & extensions now to stop them from running after a profile | |
553 // has been conceptually deleted. Don't wait for full browser shutdown and | |
554 // the actual profile objects to be destroyed. | |
555 void OnProfileDestructionStarted(); | |
556 | |
557 // The normal profile associated with this ExtensionService. | 552 // The normal profile associated with this ExtensionService. |
558 Profile* profile_; | 553 Profile* profile_; |
559 | 554 |
560 // The ExtensionSystem for the profile above. | 555 // The ExtensionSystem for the profile above. |
561 extensions::ExtensionSystem* system_; | 556 extensions::ExtensionSystem* system_; |
562 | 557 |
563 // Preferences for the owning profile. | 558 // Preferences for the owning profile. |
564 extensions::ExtensionPrefs* extension_prefs_; | 559 extensions::ExtensionPrefs* extension_prefs_; |
565 | 560 |
566 // Blacklist for the owning profile. | 561 // Blacklist for the owning profile. |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 699 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
705 GreylistedExtensionDisabled); | 700 GreylistedExtensionDisabled); |
706 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 701 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
707 GreylistDontEnableManuallyDisabled); | 702 GreylistDontEnableManuallyDisabled); |
708 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 703 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
709 GreylistUnknownDontChange); | 704 GreylistUnknownDontChange); |
710 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 705 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
711 }; | 706 }; |
712 | 707 |
713 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 708 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |