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

Side by Side Diff: chrome/browser/extensions/api/identity/identity_constants.h

Issue 2661913002: Identity extension API impl: Split constants into their own file (Closed)
Patch Set: Created 3 years, 10 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_IDENTITY_IDENTITY_CONSTANTS_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_IDENTITY_IDENTITY_CONSTANTS_H_
7
8 namespace extensions {
9
10 namespace identity_constants {
11 extern const char kInvalidClientId[];
12 extern const char kInvalidScopes[];
13 extern const char kAuthFailure[];
14 extern const char kNoGrant[];
15 extern const char kUserRejected[];
16 extern const char kUserNotSignedIn[];
17 extern const char kInteractionRequired[];
18 extern const char kInvalidRedirect[];
19 extern const char kOffTheRecord[];
20 extern const char kPageLoadFailure[];
21 extern const char kCanceled[];
22
23 extern const int kCachedIssueAdviceTTLSeconds;
24 } // namespace identity_constants
25
26 } // namespace extensions
27
28 #endif // CHROME_BROWSER_EXTENSIONS_API_IDENTITY_IDENTITY_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698