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

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

Issue 273048: Allow extensions to pin tabs:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 9
10 namespace extension_tabs_module_constants { 10 namespace extension_tabs_module_constants {
11 11
12 // Keys used in serializing tab data & events. 12 // Keys used in serializing tab data & events.
13 extern const wchar_t kFavIconUrlKey[]; 13 extern const wchar_t kFavIconUrlKey[];
14 extern const wchar_t kFocusedKey[]; 14 extern const wchar_t kFocusedKey[];
15 extern const wchar_t kFromIndexKey[]; 15 extern const wchar_t kFromIndexKey[];
16 extern const wchar_t kHeightKey[]; 16 extern const wchar_t kHeightKey[];
17 extern const wchar_t kIdKey[]; 17 extern const wchar_t kIdKey[];
18 extern const wchar_t kIndexKey[]; 18 extern const wchar_t kIndexKey[];
19 extern const wchar_t kLeftKey[]; 19 extern const wchar_t kLeftKey[];
20 extern const wchar_t kNewPositionKey[]; 20 extern const wchar_t kNewPositionKey[];
21 extern const wchar_t kNewWindowIdKey[]; 21 extern const wchar_t kNewWindowIdKey[];
22 extern const wchar_t kOldPositionKey[]; 22 extern const wchar_t kOldPositionKey[];
23 extern const wchar_t kOldWindowIdKey[]; 23 extern const wchar_t kOldWindowIdKey[];
24 extern const wchar_t kPinnedKey[];
24 extern const wchar_t kPopulateKey[]; 25 extern const wchar_t kPopulateKey[];
25 extern const wchar_t kSelectedKey[]; 26 extern const wchar_t kSelectedKey[];
26 extern const wchar_t kStatusKey[]; 27 extern const wchar_t kStatusKey[];
27 extern const wchar_t kTabIdKey[]; 28 extern const wchar_t kTabIdKey[];
28 extern const wchar_t kTabsKey[]; 29 extern const wchar_t kTabsKey[];
29 extern const wchar_t kTabUrlKey[]; 30 extern const wchar_t kTabUrlKey[];
30 extern const wchar_t kTitleKey[]; 31 extern const wchar_t kTitleKey[];
31 extern const wchar_t kToIndexKey[]; 32 extern const wchar_t kToIndexKey[];
32 extern const wchar_t kTopKey[]; 33 extern const wchar_t kTopKey[];
33 extern const wchar_t kUrlKey[]; 34 extern const wchar_t kUrlKey[];
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 extern const char kCaptureVisibleTabFunction[]; 72 extern const char kCaptureVisibleTabFunction[];
72 extern const char kExecuteScriptFunction[]; 73 extern const char kExecuteScriptFunction[];
73 extern const char kInsertCSSFunction[]; 74 extern const char kInsertCSSFunction[];
74 extern const char kNoCodeOrFileToExecuteError[]; 75 extern const char kNoCodeOrFileToExecuteError[];
75 extern const char kMoreThanOneValuesError[]; 76 extern const char kMoreThanOneValuesError[];
76 extern const char kLoadFileError[]; 77 extern const char kLoadFileError[];
77 78
78 }; // namespace extension_tabs_module_constants 79 }; // namespace extension_tabs_module_constants
79 80
80 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_ 81 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698