| 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 19 matching lines...) Expand all Loading... |
| 30 extern const char kLastFocusedWindowKey[]; | 30 extern const char kLastFocusedWindowKey[]; |
| 31 extern const char kLeftKey[]; | 31 extern const char kLeftKey[]; |
| 32 extern const char kNewPositionKey[]; | 32 extern const char kNewPositionKey[]; |
| 33 extern const char kNewWindowIdKey[]; | 33 extern const char kNewWindowIdKey[]; |
| 34 extern const char kOldPositionKey[]; | 34 extern const char kOldPositionKey[]; |
| 35 extern const char kOldWindowIdKey[]; | 35 extern const char kOldWindowIdKey[]; |
| 36 extern const char kOpenerTabIdKey[]; | 36 extern const char kOpenerTabIdKey[]; |
| 37 extern const char kPinnedKey[]; | 37 extern const char kPinnedKey[]; |
| 38 extern const char kAudibleKey[]; | 38 extern const char kAudibleKey[]; |
| 39 extern const char kDiscardedKey[]; | 39 extern const char kDiscardedKey[]; |
| 40 extern const char kAutoDiscardableKey[]; |
| 40 extern const char kMutedKey[]; | 41 extern const char kMutedKey[]; |
| 41 extern const char kMutedInfoKey[]; | 42 extern const char kMutedInfoKey[]; |
| 42 extern const char kQualityKey[]; | 43 extern const char kQualityKey[]; |
| 43 extern const char kRunAtKey[]; | 44 extern const char kRunAtKey[]; |
| 44 extern const char kSelectedKey[]; | 45 extern const char kSelectedKey[]; |
| 45 extern const char kShowStateKey[]; | 46 extern const char kShowStateKey[]; |
| 46 extern const char kStatusKey[]; | 47 extern const char kStatusKey[]; |
| 47 extern const char kTabIdKey[]; | 48 extern const char kTabIdKey[]; |
| 48 extern const char kTabIdsKey[]; | 49 extern const char kTabIdsKey[]; |
| 49 extern const char kTabsKey[]; | 50 extern const char kTabsKey[]; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 extern const char kScreenshotsDisabled[]; | 103 extern const char kScreenshotsDisabled[]; |
| 103 extern const char kCannotUpdateMuteDisabled[]; | 104 extern const char kCannotUpdateMuteDisabled[]; |
| 104 extern const char kCannotUpdateMuteCaptured[]; | 105 extern const char kCannotUpdateMuteCaptured[]; |
| 105 | 106 |
| 106 extern const char kCannotDetermineLanguageOfUnloadedTab[]; | 107 extern const char kCannotDetermineLanguageOfUnloadedTab[]; |
| 107 | 108 |
| 108 }; // namespace tabs_constants | 109 }; // namespace tabs_constants |
| 109 }; // namespace extensions | 110 }; // namespace extensions |
| 110 | 111 |
| 111 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ | 112 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_CONSTANTS_H_ |
| OLD | NEW |