| Index: chrome/common/extensions/extension.cc
|
| diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc
|
| index 9fc73cddc592eb3b1f50d7e7fd7359cfb470bd16..cf61205b3ccc9c4824419c1fb806d54c4b56e580 100644
|
| --- a/chrome/common/extensions/extension.cc
|
| +++ b/chrome/common/extensions/extension.cc
|
| @@ -2971,6 +2971,10 @@ bool Extension::OverlapsWithOrigin(const GURL& origin) const {
|
| }
|
|
|
| Extension::SyncType Extension::GetSyncType() const {
|
| + // The CWS needs to be treated as synable app.
|
| + if (id() == extension_misc::kWebStoreAppId)
|
| + return SYNC_TYPE_APP;
|
| +
|
| // TODO(akalin): Figure out if we need to allow some other types.
|
| if (location() != Extension::INTERNAL) {
|
| // We have a non-standard location.
|
|
|