Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/browser/extensions/extension_tabs_module_constants.cc

Issue 9309044: Supporting more APIs with json_schema_compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: support for choices Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/extension_tabs_module_constants.h" 5 #include "chrome/browser/extensions/extension_tabs_module_constants.h"
6 6
7 namespace extension_tabs_module_constants { 7 namespace extension_tabs_module_constants {
8 8
9 const char kActiveKey[] = "active"; 9 const char kActiveKey[] = "active";
10 const char kAllFramesKey[] = "allFrames"; 10 const char kAllFramesKey[] = "allFrames";
11 const char kBypassCache[] = "bypassCache"; 11 const char kBypassCache[] = "bypassCache";
12 const char kCodeKey[] = "code"; 12 const char kCodeKey[] = "code";
13 const char kDrawAttentionKey[] = "drawAttention"; 13 const char kDrawAttentionKey[] = "drawAttention";
14 const char kFaviconUrlKey[] = "favIconUrl"; 14 const char kFaviconUrlKey[] = "favIconUrl";
15 const char kFileKey[] = "file"; 15 const char kFileKey[] = "file";
16 const char kFocusedKey[] = "focused"; 16 const char kFocusedKey[] = "focused";
17 const char kFormatKey[] = "format"; 17 const char kFormatKey[] = "format";
18 const char kFromIndexKey[] = "fromIndex"; 18 const char kFromIndexKey[] = "fromIndex";
19 const char kHeightKey[] = "height"; 19 const char kHeightKey[] = "height";
20 const char kIdKey[] = "id"; 20 const char kIdKey[] = "id";
21 const char kIncognitoKey[] = "incognito"; 21 const char kIncognitoKey[] = "incognito";
22 const char kIndexKey[] = "index"; 22 const char kIndexKey[] = "index";
23 const char kLeftKey[] = "left"; 23 const char kLeftKey[] = "left";
24 const char kNewPositionKey[] = "newPosition"; 24 const char kNewPositionKey[] = "newPosition";
25 const char kNewWindowIdKey[] = "newWindowId"; 25 const char kNewWindowIdKey[] = "newWindowId";
26 const char kOldPositionKey[] = "oldPosition"; 26 const char kOldPositionKey[] = "oldPosition";
27 const char kOldWindowIdKey[] = "oldWindowId"; 27 const char kOldWindowIdKey[] = "oldWindowId";
28 const char kOpenerTabIdKey[] = "openerTabId"; 28 const char kOpenerTabIdKey[] = "openerTabId";
29 const char kPinnedKey[] = "pinned"; 29 const char kPinnedKey[] = "pinned";
30 const char kPopulateKey[] = "populate";
31 const char kQualityKey[] = "quality"; 30 const char kQualityKey[] = "quality";
32 const char kHighlightedKey[] = "highlighted"; 31 const char kHighlightedKey[] = "highlighted";
33 const char kSelectedKey[] = "selected"; 32 const char kSelectedKey[] = "selected";
34 const char kShowStateKey[] = "state"; 33 const char kShowStateKey[] = "state";
35 const char kStatusKey[] = "status"; 34 const char kStatusKey[] = "status";
36 const char kTabIdKey[] = "tabId"; 35 const char kTabIdKey[] = "tabId";
37 const char kTabIdsKey[] = "tabIds"; 36 const char kTabIdsKey[] = "tabIds";
38 const char kTabsKey[] = "tabs"; 37 const char kTabsKey[] = "tabs";
39 const char kTabUrlKey[] = "tabUrl"; 38 const char kTabUrlKey[] = "tabUrl";
40 const char kTitleKey[] = "title"; 39 const char kTitleKey[] = "title";
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 const char kInvalidWindowStateError[] = "Invalid value for state"; 92 const char kInvalidWindowStateError[] = "Invalid value for state";
94 93
95 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified."; 94 const char kNoCodeOrFileToExecuteError[] = "No source code or file specified.";
96 const char kMoreThanOneValuesError[] = "Code and file should not be specified " 95 const char kMoreThanOneValuesError[] = "Code and file should not be specified "
97 "at the same time in the second argument."; 96 "at the same time in the second argument.";
98 const char kLoadFileError[] = "Failed to load file: \"*\". "; 97 const char kLoadFileError[] = "Failed to load file: \"*\". ";
99 const char kCannotDetermineLanguageOfUnloadedTab[] = 98 const char kCannotDetermineLanguageOfUnloadedTab[] =
100 "Cannot determine language: tab not loaded"; 99 "Cannot determine language: tab not loaded";
101 100
102 } // namespace extension_tabs_module_constants 101 } // namespace extension_tabs_module_constants
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698