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

Unified Diff: chrome/browser/extensions/api/identity/extension_token_key.h

Issue 99173004: Identity API: add multi-account support to token cache and request queues (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/extensions/api/identity/extension_token_key.h
diff --git a/chrome/browser/extensions/api/identity/extension_token_key.h b/chrome/browser/extensions/api/identity/extension_token_key.h
new file mode 100644
index 0000000000000000000000000000000000000000..4ada0cfc85a856a9eb9da885c411e6e9784cecaf
--- /dev/null
+++ b/chrome/browser/extensions/api/identity/extension_token_key.h
@@ -0,0 +1,27 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#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;
+};
+
+} // namespace extensions
+
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_IDENTITY_EXTENSION_TOKEN_KEY_H_

Powered by Google App Engine
This is Rietveld 408576698