| OLD | NEW |
| (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_ |
| OLD | NEW |