| Index: chrome/browser/sync/test/integration/sync_app_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/sync_app_helper.cc b/chrome/browser/sync/test/integration/sync_app_helper.cc
|
| index 1a0432dc6a4ee1fc81a08077c77cb73ed9922ad7..5e1f8458e5f52f6444cd4f7d7e66895c4a3ed117 100644
|
| --- a/chrome/browser/sync/test/integration/sync_app_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/sync_app_helper.cc
|
| @@ -12,6 +12,8 @@
|
| #include "chrome/browser/sync/test/integration/sync_extension_helper.h"
|
| #include "chrome/common/extensions/sync_helper.h"
|
| #include "extensions/browser/app_sorting.h"
|
| +#include "extensions/common/extension.h"
|
| +#include "extensions/common/extension_set.h"
|
| #include "extensions/common/id_util.h"
|
|
|
| namespace {
|
| @@ -57,9 +59,9 @@ AppStateMap GetAppStates(Profile* profile) {
|
|
|
| ExtensionService* extension_service = profile->GetExtensionService();
|
|
|
| - scoped_ptr<const ExtensionSet> extensions(
|
| + scoped_ptr<const extensions::ExtensionSet> extensions(
|
| extension_service->GenerateInstalledExtensionsSet());
|
| - for (ExtensionSet::const_iterator it = extensions->begin();
|
| + for (extensions::ExtensionSet::const_iterator it = extensions->begin();
|
| it != extensions->end(); ++it) {
|
| if (extensions::sync_helper::IsSyncableApp(it->get())) {
|
| const std::string& id = (*it)->id();
|
|
|