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

Side by Side Diff: chrome/common/extensions/extension_manifest_constants.h

Issue 23445013: Parse media keys for named command in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 19 matching lines...) Expand all
30 extern const char kKeyCommand[]; 30 extern const char kKeyCommand[];
31 extern const char kKeyCtrl[]; 31 extern const char kKeyCtrl[];
32 extern const char kKeyComma[]; 32 extern const char kKeyComma[];
33 extern const char kKeyDel[]; 33 extern const char kKeyDel[];
34 extern const char kKeyDown[]; 34 extern const char kKeyDown[];
35 extern const char kKeyHome[]; 35 extern const char kKeyHome[];
36 extern const char kKeyEnd[]; 36 extern const char kKeyEnd[];
37 extern const char kKeyIns[]; 37 extern const char kKeyIns[];
38 extern const char kKeyLeft[]; 38 extern const char kKeyLeft[];
39 extern const char kKeyMacCtrl[]; 39 extern const char kKeyMacCtrl[];
40 extern const char kKeyMediaNextTrack[];
41 extern const char kKeyMediaPlayPause[];
42 extern const char kKeyMediaPrevTrack[];
43 extern const char kKeyMediaStop[];
40 extern const char kKeyPgDwn[]; 44 extern const char kKeyPgDwn[];
41 extern const char kKeyPgUp[]; 45 extern const char kKeyPgUp[];
42 extern const char kKeyPeriod[]; 46 extern const char kKeyPeriod[];
43 extern const char kKeyRight[]; 47 extern const char kKeyRight[];
44 extern const char kKeySeparator[]; 48 extern const char kKeySeparator[];
45 extern const char kKeyTab[]; 49 extern const char kKeyTab[];
46 extern const char kKeyUp[]; 50 extern const char kKeyUp[];
47 extern const char kLaunchContainerPanel[]; 51 extern const char kLaunchContainerPanel[];
48 extern const char kLaunchContainerTab[]; 52 extern const char kLaunchContainerTab[];
49 extern const char kLaunchContainerWindow[]; 53 extern const char kLaunchContainerWindow[];
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 extern const char kScriptBadgeRequiresFlag[]; 265 extern const char kScriptBadgeRequiresFlag[];
262 extern const char kScriptBadgeIconIgnored[]; 266 extern const char kScriptBadgeIconIgnored[];
263 extern const char kScriptBadgeTitleIgnored[]; 267 extern const char kScriptBadgeTitleIgnored[];
264 extern const char kWebRequestConflictsWithLazyBackground[]; 268 extern const char kWebRequestConflictsWithLazyBackground[];
265 #if defined(OS_CHROMEOS) 269 #if defined(OS_CHROMEOS)
266 extern const char kIllegalPlugins[]; 270 extern const char kIllegalPlugins[];
267 #endif 271 #endif
268 } // namespace extension_manifest_errors 272 } // namespace extension_manifest_errors
269 273
270 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ 274 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698