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

Unified Diff: chrome/browser/ui/sync/profile_signin_confirmation_helper.cc

Issue 515563003: Remove dependency of chrome in WebRequestPermissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated. Created 6 years, 3 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/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();

Powered by Google App Engine
This is Rietveld 408576698