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