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"; |
11 const char kAllFramesKey[] = "allFrames"; | 11 const char kAllFramesKey[] = "allFrames"; |
| 12 const char kAllWindowTypesKey[] = "allWindowTypes"; |
12 const char kAlwaysOnTopKey[] = "alwaysOnTop"; | 13 const char kAlwaysOnTopKey[] = "alwaysOnTop"; |
13 const char kBypassCache[] = "bypassCache"; | 14 const char kBypassCache[] = "bypassCache"; |
14 const char kCodeKey[] = "code"; | 15 const char kCodeKey[] = "code"; |
15 const char kCurrentWindowKey[] = "currentWindow"; | 16 const char kCurrentWindowKey[] = "currentWindow"; |
16 const char kFaviconUrlKey[] = "favIconUrl"; | 17 const char kFaviconUrlKey[] = "favIconUrl"; |
17 const char kFileKey[] = "file"; | 18 const char kFileKey[] = "file"; |
18 const char kFocusedKey[] = "focused"; | 19 const char kFocusedKey[] = "focused"; |
19 const char kFormatKey[] = "format"; | 20 const char kFormatKey[] = "format"; |
20 const char kFromIndexKey[] = "fromIndex"; | 21 const char kFromIndexKey[] = "fromIndex"; |
21 const char kHeightKey[] = "height"; | 22 const char kHeightKey[] = "height"; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 const char kCannotUpdateMuteDisabled[] = | 102 const char kCannotUpdateMuteDisabled[] = |
102 "Failed to update mute state for tab *, --* must be enabled"; | 103 "Failed to update mute state for tab *, --* must be enabled"; |
103 const char kCannotUpdateMuteCaptured[] = | 104 const char kCannotUpdateMuteCaptured[] = |
104 "Cannot update mute state for tab *, tab has audio or video currently " | 105 "Cannot update mute state for tab *, tab has audio or video currently " |
105 "being captured"; | 106 "being captured"; |
106 const char kCannotDetermineLanguageOfUnloadedTab[] = | 107 const char kCannotDetermineLanguageOfUnloadedTab[] = |
107 "Cannot determine language: tab not loaded"; | 108 "Cannot determine language: tab not loaded"; |
108 | 109 |
109 } // namespace tabs_constants | 110 } // namespace tabs_constants |
110 } // namespace extensions | 111 } // namespace extensions |
OLD | NEW |