| Index: chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| index 16fd457b6d8c9c7ff2ccd2965f3b42d0fcde7ac3..2ba3184b47e68d0fa916c19115d67f3fd2ac8f5f 100644
|
| --- a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| +++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| @@ -26,6 +26,7 @@
|
| #include "chrome/common/extensions/extension_constants.h"
|
| #include "chrome/common/extensions/sync_helper.h"
|
| #include "extensions/browser/extension_system.h"
|
| +#include "extensions/common/constants.h"
|
| #include "extensions/common/extension.h"
|
| #include "extensions/common/extension_set.h"
|
| #endif
|
| @@ -207,7 +208,7 @@ bool HasSyncedExtensions(Profile* profile) {
|
| // page, but since it's installed by default we don't want to
|
| // consider it when determining if the profile is dirty.
|
| if (extensions::sync_helper::IsSyncable(iter->get()) &&
|
| - (*iter)->id() != extension_misc::kWebStoreAppId &&
|
| + (*iter)->id() != extensions::kWebStoreAppId &&
|
| (*iter)->id() != extension_misc::kChromeAppId) {
|
| DVLOG(1) << "ProfileSigninConfirmationHelper: "
|
| << "profile contains a synced extension: " << (*iter)->id();
|
|
|