#ifndef CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_
#define CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_
#include <set>
#include <string>
namespace extensions {
struct ExtensionTokenKey {
ExtensionTokenKey(const std::string& extension_id,
const std::string& account_id,
const std::set<std::string>& scopes);
~ExtensionTokenKey();
bool operator<(const ExtensionTokenKey& rhs) const;
std::string extension_id;
std::string account_id;
std::set<std::string> scopes;
};
}
#endif