| 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..58b314b35f2bb5e48b218d6b8f0a0f5fa47f87a1 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(
|
|
|