#include "chrome/browser/extensions/api/cookies/cookies_api_constants.h"
namespace extensions {
namespace cookies_api_constants {
const char kCauseKey[] = "cause";
const char kCookieKey[] = "cookie";
const char kDomainKey[] = "domain";
const char kIdKey[] = "id";
const char kRemovedKey[] = "removed";
const char kTabIdsKey[] = "tabIds";
extern const char kEvictedChangeCause[] = "evicted";
extern const char kExpiredChangeCause[] = "expired";
extern const char kExpiredOverwriteChangeCause[] = "expired_overwrite";
extern const char kExplicitChangeCause[] = "explicit";
extern const char kOverwriteChangeCause[] = "overwrite";
const char kCookieSetFailedError[] =
"Failed to parse or set cookie named \"*\".";
const char kInvalidStoreIdError[] = "Invalid cookie store id: \"*\".";
const char kInvalidUrlError[] = "Invalid url: \"*\".";
const char kNoCookieStoreFoundError[] =
"No accessible cookie store found for the current execution context.";
const char kNoHostPermissionsError[] =
"No host permissions for cookies at url: \"*\".";
}
}