Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / extensions / api / identity / extension_token_key.h
blobb6a0f9fbf224a46b33a6cdc5d388856c081a1f2c
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_
8 #include <set>
9 #include <string>
11 namespace extensions {
13 struct ExtensionTokenKey {
14 ExtensionTokenKey(const std::string& extension_id,
15 const std::string& account_id,
16 const std::set<std::string>& scopes);
17 ~ExtensionTokenKey();
18 bool operator<(const ExtensionTokenKey& rhs) const;
19 std::string extension_id;
20 std::string account_id;
21 std::set<std::string> scopes;
24 } // namespace extensions
27 #endif // CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_