| 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 const ExtensionIdSet& unchanged); | 550 const ExtensionIdSet& unchanged); |
| 551 | 551 |
| 552 void UpdateGreylistedExtensions( | 552 void UpdateGreylistedExtensions( |
| 553 const ExtensionIdSet& greylist, | 553 const ExtensionIdSet& greylist, |
| 554 const ExtensionIdSet& unchanged, | 554 const ExtensionIdSet& unchanged, |
| 555 const extensions::Blacklist::BlacklistStateMap& state_map); | 555 const extensions::Blacklist::BlacklistStateMap& state_map); |
| 556 | 556 |
| 557 // Used only by test code. | 557 // Used only by test code. |
| 558 void UnloadAllExtensionsInternal(); | 558 void UnloadAllExtensionsInternal(); |
| 559 | 559 |
| 560 // Disable apps & extensions now to stop them from running after a profile | |
| 561 // has been conceptually deleted. Don't wait for full browser shutdown and | |
| 562 // the actual profile objects to be destroyed. | |
| 563 void OnProfileDestructionStarted(); | |
| 564 | |
| 565 // The normal profile associated with this ExtensionService. | 560 // The normal profile associated with this ExtensionService. |
| 566 Profile* profile_; | 561 Profile* profile_; |
| 567 | 562 |
| 568 // The ExtensionSystem for the profile above. | 563 // The ExtensionSystem for the profile above. |
| 569 extensions::ExtensionSystem* system_; | 564 extensions::ExtensionSystem* system_; |
| 570 | 565 |
| 571 // Preferences for the owning profile. | 566 // Preferences for the owning profile. |
| 572 extensions::ExtensionPrefs* extension_prefs_; | 567 extensions::ExtensionPrefs* extension_prefs_; |
| 573 | 568 |
| 574 // Blacklist for the owning profile. | 569 // Blacklist for the owning profile. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 707 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 713 GreylistedExtensionDisabled); | 708 GreylistedExtensionDisabled); |
| 714 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 709 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 715 GreylistDontEnableManuallyDisabled); | 710 GreylistDontEnableManuallyDisabled); |
| 716 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 711 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 717 GreylistUnknownDontChange); | 712 GreylistUnknownDontChange); |
| 718 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 713 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 719 }; | 714 }; |
| 720 | 715 |
| 721 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 716 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |