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

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

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 months 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 efa61c74dff62b10434b0ce2c80194b7039b1f02..e70128dbed3fd4bb8020698d39c22eb0a11dfee1 100644
--- a/chrome/browser/sync/test/integration/sync_app_helper.cc
+++ b/chrome/browser/sync/test/integration/sync_app_helper.cc
@@ -60,7 +60,7 @@ AppStateMap GetAppStates(Profile* profile) {
extension_service->GenerateInstalledExtensionsSet());
for (ExtensionSet::const_iterator it = extensions->begin();
it != extensions->end(); ++it) {
- if ((*it)->GetSyncType() == Extension::SYNC_TYPE_APP) {
+ if ((*it)->GetSyncType() == extensions::Extension::SYNC_TYPE_APP) {
const std::string& id = (*it)->id();
LoadApp(extension_service, id, &(app_state_map[id]));
}

Powered by Google App Engine
This is Rietveld 408576698