OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 extern const char kNoCrashBrowserError[]; | 68 extern const char kNoCrashBrowserError[]; |
69 extern const char kNoCurrentWindowError[]; | 69 extern const char kNoCurrentWindowError[]; |
70 extern const char kNoLastFocusedWindowError[]; | 70 extern const char kNoLastFocusedWindowError[]; |
71 extern const char kWindowNotFoundError[]; | 71 extern const char kWindowNotFoundError[]; |
72 extern const char kTabIndexNotFoundError[]; | 72 extern const char kTabIndexNotFoundError[]; |
73 extern const char kTabNotFoundError[]; | 73 extern const char kTabNotFoundError[]; |
74 extern const char kTabStripNotEditableError[]; | 74 extern const char kTabStripNotEditableError[]; |
75 extern const char kNoHighlightedTabError[]; | 75 extern const char kNoHighlightedTabError[]; |
76 extern const char kNoSelectedTabError[]; | 76 extern const char kNoSelectedTabError[]; |
77 extern const char kIncognitoModeIsDisabled[]; | 77 extern const char kIncognitoModeIsDisabled[]; |
| 78 extern const char kIncognitoModeIsForced[]; |
78 extern const char kURLsNotAllowedInIncognitoError[]; | 79 extern const char kURLsNotAllowedInIncognitoError[]; |
79 extern const char kInvalidUrlError[]; | 80 extern const char kInvalidUrlError[]; |
80 extern const char kInternalVisibleTabCaptureError[]; | 81 extern const char kInternalVisibleTabCaptureError[]; |
81 extern const char kNotImplementedError[]; | 82 extern const char kNotImplementedError[]; |
82 extern const char kSupportedInWindowsOnlyError[]; | 83 extern const char kSupportedInWindowsOnlyError[]; |
83 | 84 |
84 extern const char kNoCodeOrFileToExecuteError[]; | 85 extern const char kNoCodeOrFileToExecuteError[]; |
85 extern const char kMoreThanOneValuesError[]; | 86 extern const char kMoreThanOneValuesError[]; |
86 extern const char kLoadFileError[]; | 87 extern const char kLoadFileError[]; |
87 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 88 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
88 | 89 |
89 }; // namespace extension_tabs_module_constants | 90 }; // namespace extension_tabs_module_constants |
90 | 91 |
91 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ | 92 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ |
OLD | NEW |