Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3299)

Unified Diff: chrome/browser/sync/test/integration/sync_app_helper.cc

Issue 102103005: Move c/c/e/extension_set to top-level extensions/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698