Index: chrome/browser/sync/test/integration/extensions_helper.cc |
=================================================================== |
--- chrome/browser/sync/test/integration/extensions_helper.cc (revision 234311) |
+++ chrome/browser/sync/test/integration/extensions_helper.cc (working copy) |
@@ -81,6 +81,16 @@ |
return indices; |
} |
+void EnableExtension(Profile* profile, int index) { |
+ return SyncExtensionHelper::GetInstance()->EnableExtension( |
+ profile, CreateFakeExtensionName(index)); |
+} |
+ |
+void DisableExtension(Profile* profile, int index) { |
+ return SyncExtensionHelper::GetInstance()->DisableExtension( |
+ profile, CreateFakeExtensionName(index)); |
+} |
+ |
bool IsExtensionEnabled(Profile* profile, int index) { |
return SyncExtensionHelper::GetInstance()->IsExtensionEnabled( |
profile, CreateFakeExtensionName(index)); |