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

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

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 // Constants used for the Tabs API and the Windows API. 5 // Constants used for the Tabs API and the Windows API.
6 6
7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 13 matching lines...) Expand all
24 extern const char kHeightKey[]; 24 extern const char kHeightKey[];
25 extern const char kIdKey[]; 25 extern const char kIdKey[];
26 extern const char kIndexKey[]; 26 extern const char kIndexKey[];
27 extern const char kLeftKey[]; 27 extern const char kLeftKey[];
28 extern const char kNewPositionKey[]; 28 extern const char kNewPositionKey[];
29 extern const char kNewWindowIdKey[]; 29 extern const char kNewWindowIdKey[];
30 extern const char kOldPositionKey[]; 30 extern const char kOldPositionKey[];
31 extern const char kOldWindowIdKey[]; 31 extern const char kOldWindowIdKey[];
32 extern const char kOpenerTabIdKey[]; 32 extern const char kOpenerTabIdKey[];
33 extern const char kPinnedKey[]; 33 extern const char kPinnedKey[];
34 extern const char kPopulateKey[];
35 extern const char kQualityKey[]; 34 extern const char kQualityKey[];
36 extern const char kHighlightedKey[]; 35 extern const char kHighlightedKey[];
37 extern const char kSelectedKey[]; 36 extern const char kSelectedKey[];
38 extern const char kShowStateKey[]; 37 extern const char kShowStateKey[];
39 extern const char kStatusKey[]; 38 extern const char kStatusKey[];
40 extern const char kTabIdKey[]; 39 extern const char kTabIdKey[];
41 extern const char kTabIdsKey[]; 40 extern const char kTabIdsKey[];
42 extern const char kTabsKey[]; 41 extern const char kTabsKey[];
43 extern const char kTabUrlKey[]; 42 extern const char kTabUrlKey[];
44 extern const char kTitleKey[]; 43 extern const char kTitleKey[];
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 extern const char kInvalidWindowStateError[]; 89 extern const char kInvalidWindowStateError[];
91 90
92 extern const char kNoCodeOrFileToExecuteError[]; 91 extern const char kNoCodeOrFileToExecuteError[];
93 extern const char kMoreThanOneValuesError[]; 92 extern const char kMoreThanOneValuesError[];
94 extern const char kLoadFileError[]; 93 extern const char kLoadFileError[];
95 extern const char kCannotDetermineLanguageOfUnloadedTab[]; 94 extern const char kCannotDetermineLanguageOfUnloadedTab[];
96 95
97 }; // namespace extension_tabs_module_constants 96 }; // namespace extension_tabs_module_constants
98 97
99 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 98 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698