| 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 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" | 5 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 namespace tabs_constants { | 8 namespace tabs_constants { |
| 9 | 9 |
| 10 const char kActiveKey[] = "active"; | 10 const char kActiveKey[] = "active"; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 const char kIncognitoKey[] = "incognito"; | 23 const char kIncognitoKey[] = "incognito"; |
| 24 const char kIndexKey[] = "index"; | 24 const char kIndexKey[] = "index"; |
| 25 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; | 25 const char kLastFocusedWindowKey[] = "lastFocusedWindow"; |
| 26 const char kLeftKey[] = "left"; | 26 const char kLeftKey[] = "left"; |
| 27 const char kNewPositionKey[] = "newPosition"; | 27 const char kNewPositionKey[] = "newPosition"; |
| 28 const char kNewWindowIdKey[] = "newWindowId"; | 28 const char kNewWindowIdKey[] = "newWindowId"; |
| 29 const char kOldPositionKey[] = "oldPosition"; | 29 const char kOldPositionKey[] = "oldPosition"; |
| 30 const char kOldWindowIdKey[] = "oldWindowId"; | 30 const char kOldWindowIdKey[] = "oldWindowId"; |
| 31 const char kOpenerTabIdKey[] = "openerTabId"; | 31 const char kOpenerTabIdKey[] = "openerTabId"; |
| 32 const char kPinnedKey[] = "pinned"; | 32 const char kPinnedKey[] = "pinned"; |
| 33 const char kAudibleKey[] = "audible"; |
| 34 const char kMutedKey[] = "muted"; |
| 35 const char kMutedCauseKey[] = "mutedCause"; |
| 33 const char kQualityKey[] = "quality"; | 36 const char kQualityKey[] = "quality"; |
| 34 const char kHighlightedKey[] = "highlighted"; | 37 const char kHighlightedKey[] = "highlighted"; |
| 35 const char kRunAtKey[] = "runAt"; | 38 const char kRunAtKey[] = "runAt"; |
| 36 const char kSelectedKey[] = "selected"; | 39 const char kSelectedKey[] = "selected"; |
| 37 const char kShowStateKey[] = "state"; | 40 const char kShowStateKey[] = "state"; |
| 38 const char kStatusKey[] = "status"; | 41 const char kStatusKey[] = "status"; |
| 39 const char kTabIdKey[] = "tabId"; | 42 const char kTabIdKey[] = "tabId"; |
| 40 const char kTabIdsKey[] = "tabIds"; | 43 const char kTabIdsKey[] = "tabIds"; |
| 41 const char kTabsKey[] = "tabs"; | 44 const char kTabsKey[] = "tabs"; |
| 42 const char kTitleKey[] = "title"; | 45 const char kTitleKey[] = "title"; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; | 98 const char kSupportedInWindowsOnlyError[] = "Supported in Windows only"; |
| 96 const char kInvalidWindowTypeError[] = "Invalid value for type"; | 99 const char kInvalidWindowTypeError[] = "Invalid value for type"; |
| 97 const char kInvalidWindowStateError[] = "Invalid value for state"; | 100 const char kInvalidWindowStateError[] = "Invalid value for state"; |
| 98 const char kScreenshotsDisabled[] = "Taking screenshots has been disabled"; | 101 const char kScreenshotsDisabled[] = "Taking screenshots has been disabled"; |
| 99 | 102 |
| 100 const char kCannotDetermineLanguageOfUnloadedTab[] = | 103 const char kCannotDetermineLanguageOfUnloadedTab[] = |
| 101 "Cannot determine language: tab not loaded"; | 104 "Cannot determine language: tab not loaded"; |
| 102 | 105 |
| 103 } // namespace tabs_constants | 106 } // namespace tabs_constants |
| 104 } // namespace extensions | 107 } // namespace extensions |
| OLD | NEW |