| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Constants used for the Tabs API and the Windows API. | 5 // Constants used for the Tabs API and the Windows API. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace extensions { | 10 namespace extensions { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 extern const char kNoSelectedTabError[]; | 87 extern const char kNoSelectedTabError[]; |
| 88 extern const char kIncognitoModeIsDisabled[]; | 88 extern const char kIncognitoModeIsDisabled[]; |
| 89 extern const char kIncognitoModeIsForced[]; | 89 extern const char kIncognitoModeIsForced[]; |
| 90 extern const char kURLsNotAllowedInIncognitoError[]; | 90 extern const char kURLsNotAllowedInIncognitoError[]; |
| 91 extern const char kInvalidUrlError[]; | 91 extern const char kInvalidUrlError[]; |
| 92 extern const char kNotImplementedError[]; | 92 extern const char kNotImplementedError[]; |
| 93 extern const char kSupportedInWindowsOnlyError[]; | 93 extern const char kSupportedInWindowsOnlyError[]; |
| 94 extern const char kInvalidWindowTypeError[]; | 94 extern const char kInvalidWindowTypeError[]; |
| 95 extern const char kInvalidWindowStateError[]; | 95 extern const char kInvalidWindowStateError[]; |
| 96 extern const char kScreenshotsDisabled[]; | 96 extern const char kScreenshotsDisabled[]; |
| 97 extern const char kCannotUpdateMuteDisabled[]; |
| 98 extern const char kCannotUpdateMuteCaptured[]; |
| 97 | 99 |
| 98 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 100 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 99 | 101 |
| 100 }; // namespace tabs_constants | 102 }; // namespace tabs_constants |
| 101 }; // namespace extensions | 103 }; // namespace extensions |
| 102 | 104 |
| 103 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 105 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |