Index: chrome/test/live_sync/live_extensions_sync_test.cc |
diff --git a/chrome/test/live_sync/live_extensions_sync_test.cc b/chrome/test/live_sync/live_extensions_sync_test.cc |
index 9b4f92bcdc3c45ee12d1953c232f1965a6426ff4..7db23f180da6a6bbc3978a2f04e64bc7a5da3ef9 100644 |
--- a/chrome/test/live_sync/live_extensions_sync_test.cc |
+++ b/chrome/test/live_sync/live_extensions_sync_test.cc |
@@ -62,6 +62,28 @@ void LiveExtensionsSyncTest::UninstallExtension(Profile* profile, int index) { |
CreateFakeExtensionName(index)); |
} |
+void LiveExtensionsSyncTest::EnableExtension(Profile* profile, int index) { |
+ return extension_helper_.EnableExtension(profile, |
+ CreateFakeExtensionName(index)); |
+} |
+ |
+void LiveExtensionsSyncTest::DisableExtension(Profile* profile, int index) { |
+ return extension_helper_.DisableExtension(profile, |
+ CreateFakeExtensionName(index)); |
+} |
+ |
+void LiveExtensionsSyncTest::IncognitoEnableExtension(Profile* profile, |
+ int index) { |
+ return extension_helper_.IncognitoEnableExtension( |
+ profile, CreateFakeExtensionName(index)); |
+} |
+ |
+void LiveExtensionsSyncTest::IncognitoDisableExtension(Profile* profile, |
+ int index) { |
+ return extension_helper_.IncognitoDisableExtension( |
+ profile, CreateFakeExtensionName(index)); |
+} |
+ |
void LiveExtensionsSyncTest::InstallExtensionsPendingForSync( |
Profile* profile) { |
extension_helper_.InstallExtensionsPendingForSync( |