| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 extern const char kStatusValueComplete[]; | 65 extern const char kStatusValueComplete[]; |
| 66 extern const char kStatusValueLoading[]; | 66 extern const char kStatusValueLoading[]; |
| 67 extern const char kWindowTypeValueNormal[]; | 67 extern const char kWindowTypeValueNormal[]; |
| 68 extern const char kWindowTypeValuePopup[]; | 68 extern const char kWindowTypeValuePopup[]; |
| 69 extern const char kWindowTypeValuePanel[]; | 69 extern const char kWindowTypeValuePanel[]; |
| 70 extern const char kWindowTypeValueDetachedPanel[]; | 70 extern const char kWindowTypeValueDetachedPanel[]; |
| 71 extern const char kWindowTypeValueApp[]; | 71 extern const char kWindowTypeValueApp[]; |
| 72 | 72 |
| 73 // Error messages. | 73 // Error messages. |
| 74 extern const char kCannotZoomDisabledTabError[]; | 74 extern const char kCannotZoomDisabledTabError[]; |
| 75 extern const char kFrameNotFoundError[]; |
| 75 extern const char kNoCrashBrowserError[]; | 76 extern const char kNoCrashBrowserError[]; |
| 76 extern const char kNoCurrentWindowError[]; | 77 extern const char kNoCurrentWindowError[]; |
| 77 extern const char kNoLastFocusedWindowError[]; | 78 extern const char kNoLastFocusedWindowError[]; |
| 78 extern const char kPerOriginOnlyInAutomaticError[]; | 79 extern const char kPerOriginOnlyInAutomaticError[]; |
| 79 extern const char kWindowNotFoundError[]; | 80 extern const char kWindowNotFoundError[]; |
| 80 extern const char kTabIndexNotFoundError[]; | 81 extern const char kTabIndexNotFoundError[]; |
| 81 extern const char kTabNotFoundError[]; | 82 extern const char kTabNotFoundError[]; |
| 82 extern const char kTabStripNotEditableError[]; | 83 extern const char kTabStripNotEditableError[]; |
| 83 extern const char kNoHighlightedTabError[]; | 84 extern const char kNoHighlightedTabError[]; |
| 84 extern const char kNoSelectedTabError[]; | 85 extern const char kNoSelectedTabError[]; |
| 85 extern const char kIncognitoModeIsDisabled[]; | 86 extern const char kIncognitoModeIsDisabled[]; |
| 86 extern const char kIncognitoModeIsForced[]; | 87 extern const char kIncognitoModeIsForced[]; |
| 87 extern const char kURLsNotAllowedInIncognitoError[]; | 88 extern const char kURLsNotAllowedInIncognitoError[]; |
| 88 extern const char kInvalidUrlError[]; | 89 extern const char kInvalidUrlError[]; |
| 89 extern const char kNotImplementedError[]; | 90 extern const char kNotImplementedError[]; |
| 90 extern const char kSupportedInWindowsOnlyError[]; | 91 extern const char kSupportedInWindowsOnlyError[]; |
| 91 extern const char kInvalidWindowTypeError[]; | 92 extern const char kInvalidWindowTypeError[]; |
| 92 extern const char kInvalidWindowStateError[]; | 93 extern const char kInvalidWindowStateError[]; |
| 93 extern const char kScreenshotsDisabled[]; | 94 extern const char kScreenshotsDisabled[]; |
| 94 | 95 |
| 95 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 96 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 96 | 97 |
| 97 }; // namespace tabs_constants | 98 }; // namespace tabs_constants |
| 98 }; // namespace extensions | 99 }; // namespace extensions |
| 99 | 100 |
| 100 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 101 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |