1 // Copyright (c) 2012 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_PREFERENCE_PREFERENCE_API_CONSTANTS_H__ 6 #define CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_CONSTANTS_H__ 7 8 namespace extensions { 9 namespace preference_api_constants { 10 11 // Keys for incoming arguments. 12 extern const char kIncognitoKey[]; 13 extern const char kScopeKey[]; 14 15 // Keys for returned parameters. 16 extern const char kIncognitoSpecific[]; 17 extern const char kLevelOfControl[]; 18 extern const char kValue[]; 19 20 // Errors. 21 extern const char kIncognitoErrorMessage[]; 22 extern const char kIncognitoSessionOnlyErrorMessage[]; 23 extern const char kPermissionErrorMessage[]; 24 25 } // namespace preference_api_constants 26 } // namespace extensions 27 28 #endif // CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_CONSTANTS_H__ 29