| 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 14 matching lines...) Expand all Loading... |
| 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"; | 33 const char kAudibleKey[] = "audible"; |
| 34 const char kDiscardedKey[] = "discarded"; | 34 const char kDiscardedKey[] = "discarded"; |
| 35 const char kAutoDiscardableKey[] = "autoDiscardable"; |
| 35 const char kMutedKey[] = "muted"; | 36 const char kMutedKey[] = "muted"; |
| 36 const char kMutedInfoKey[] = "mutedInfo"; | 37 const char kMutedInfoKey[] = "mutedInfo"; |
| 37 const char kQualityKey[] = "quality"; | 38 const char kQualityKey[] = "quality"; |
| 38 const char kHighlightedKey[] = "highlighted"; | 39 const char kHighlightedKey[] = "highlighted"; |
| 39 const char kRunAtKey[] = "runAt"; | 40 const char kRunAtKey[] = "runAt"; |
| 40 const char kSelectedKey[] = "selected"; | 41 const char kSelectedKey[] = "selected"; |
| 41 const char kShowStateKey[] = "state"; | 42 const char kShowStateKey[] = "state"; |
| 42 const char kStatusKey[] = "status"; | 43 const char kStatusKey[] = "status"; |
| 43 const char kTabIdKey[] = "tabId"; | 44 const char kTabIdKey[] = "tabId"; |
| 44 const char kTabIdsKey[] = "tabIds"; | 45 const char kTabIdsKey[] = "tabIds"; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 const char kCannotUpdateMuteDisabled[] = | 107 const char kCannotUpdateMuteDisabled[] = |
| 107 "Failed to update mute state for tab *, --* must be enabled"; | 108 "Failed to update mute state for tab *, --* must be enabled"; |
| 108 const char kCannotUpdateMuteCaptured[] = | 109 const char kCannotUpdateMuteCaptured[] = |
| 109 "Cannot update mute state for tab *, tab has audio or video currently " | 110 "Cannot update mute state for tab *, tab has audio or video currently " |
| 110 "being captured"; | 111 "being captured"; |
| 111 const char kCannotDetermineLanguageOfUnloadedTab[] = | 112 const char kCannotDetermineLanguageOfUnloadedTab[] = |
| 112 "Cannot determine language: tab not loaded"; | 113 "Cannot determine language: tab not loaded"; |
| 113 | 114 |
| 114 } // namespace tabs_constants | 115 } // namespace tabs_constants |
| 115 } // namespace extensions | 116 } // namespace extensions |
| OLD | NEW |