| Index: chrome/test/live_sync/live_apps_sync_test.cc
|
| diff --git a/chrome/test/live_sync/live_apps_sync_test.cc b/chrome/test/live_sync/live_apps_sync_test.cc
|
| index 885949a0f2725e14e2f20df9000fa8851155367c..91bd74b91241b55a36d640cd3b672c9049234254 100644
|
| --- a/chrome/test/live_sync/live_apps_sync_test.cc
|
| +++ b/chrome/test/live_sync/live_apps_sync_test.cc
|
| @@ -64,6 +64,26 @@ void LiveAppsSyncTest::UninstallApp(Profile* profile, int index) {
|
| CreateFakeAppName(index));
|
| }
|
|
|
| +void LiveAppsSyncTest::EnableApp(Profile* profile, int index) {
|
| + return extension_helper_.EnableExtension(profile,
|
| + CreateFakeAppName(index));
|
| +}
|
| +
|
| +void LiveAppsSyncTest::DisableApp(Profile* profile, int index) {
|
| + return extension_helper_.DisableExtension(profile,
|
| + CreateFakeAppName(index));
|
| +}
|
| +
|
| +void LiveAppsSyncTest::IncognitoEnableApp(Profile* profile, int index) {
|
| + return extension_helper_.IncognitoEnableExtension(profile,
|
| + CreateFakeAppName(index));
|
| +}
|
| +
|
| +void LiveAppsSyncTest::IncognitoDisableApp(Profile* profile, int index) {
|
| + return extension_helper_.IncognitoDisableExtension(profile,
|
| + CreateFakeAppName(index));
|
| +}
|
| +
|
| void LiveAppsSyncTest::InstallAppsPendingForSync(
|
| Profile* profile) {
|
| extension_helper_.InstallExtensionsPendingForSync(
|
|
|