diff options
Diffstat (limited to 'chrome/browser/sync/test/integration/apps_helper.cc')
-rw-r--r-- | chrome/browser/sync/test/integration/apps_helper.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync/test/integration/apps_helper.cc b/chrome/browser/sync/test/integration/apps_helper.cc index dea553d..a73c17d 100644 --- a/chrome/browser/sync/test/integration/apps_helper.cc +++ b/chrome/browser/sync/test/integration/apps_helper.cc @@ -42,7 +42,9 @@ bool AllProfilesHaveSameAppsAsVerifier() { std::string InstallApp(Profile* profile, int index) { return SyncExtensionHelper::GetInstance()->InstallExtension( - profile, CreateFakeAppName(index), Extension::TYPE_HOSTED_APP); + profile, + CreateFakeAppName(index), + extensions::Extension::TYPE_HOSTED_APP); } std::string InstallAppForAllProfiles(int index) { @@ -78,7 +80,7 @@ void IncognitoDisableApp(Profile* profile, int index) { void InstallAppsPendingForSync(Profile* profile) { SyncExtensionHelper::GetInstance()->InstallExtensionsPendingForSync( - profile, Extension::TYPE_HOSTED_APP); + profile, extensions::Extension::TYPE_HOSTED_APP); } StringOrdinal GetPageOrdinalForApp(Profile* profile, |