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

Side by Side Diff: extensions/common/manifest_constants.h

Issue 399783002: Begin whitelisting specific extensions for global key registration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update cl with new permission "commands.accessibility". Created 6 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
7 7
8 namespace extensions { 8 namespace extensions {
9 9
10 // Keys used in JSON representation of extensions. 10 // Keys used in JSON representation of extensions.
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 extern const char kKeyLeft[]; 211 extern const char kKeyLeft[];
212 extern const char kKeyMacCtrl[]; 212 extern const char kKeyMacCtrl[];
213 extern const char kKeyMediaNextTrack[]; 213 extern const char kKeyMediaNextTrack[];
214 extern const char kKeyMediaPlayPause[]; 214 extern const char kKeyMediaPlayPause[];
215 extern const char kKeyMediaPrevTrack[]; 215 extern const char kKeyMediaPrevTrack[];
216 extern const char kKeyMediaStop[]; 216 extern const char kKeyMediaStop[];
217 extern const char kKeyPgDwn[]; 217 extern const char kKeyPgDwn[];
218 extern const char kKeyPgUp[]; 218 extern const char kKeyPgUp[];
219 extern const char kKeyPeriod[]; 219 extern const char kKeyPeriod[];
220 extern const char kKeyRight[]; 220 extern const char kKeyRight[];
221 extern const char kKeySearch[];
221 extern const char kKeySeparator[]; 222 extern const char kKeySeparator[];
222 extern const char kKeyTab[]; 223 extern const char kKeyTab[];
223 extern const char kKeyUp[]; 224 extern const char kKeyUp[];
224 extern const char kLaunchContainerPanel[]; 225 extern const char kLaunchContainerPanel[];
225 extern const char kLaunchContainerTab[]; 226 extern const char kLaunchContainerTab[];
226 extern const char kLaunchContainerWindow[]; 227 extern const char kLaunchContainerWindow[];
227 extern const char kPageActionCommandEvent[]; 228 extern const char kPageActionCommandEvent[];
228 extern const char kPageActionTypePermanent[]; 229 extern const char kPageActionTypePermanent[];
229 extern const char kPageActionTypeTab[]; 230 extern const char kPageActionTypeTab[];
230 extern const char kScriptBadgeCommandEvent[]; 231 extern const char kScriptBadgeCommandEvent[];
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 extern const char kWebRequestConflictsWithLazyBackground[]; 478 extern const char kWebRequestConflictsWithLazyBackground[];
478 #if defined(OS_CHROMEOS) 479 #if defined(OS_CHROMEOS)
479 extern const char kIllegalPlugins[]; 480 extern const char kIllegalPlugins[];
480 #endif 481 #endif
481 482
482 } // namespace manifest_errors 483 } // namespace manifest_errors
483 484
484 } // namespace extensions 485 } // namespace extensions
485 486
486 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_ 487 #endif // EXTENSIONS_COMMON_MANIFEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698