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

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

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 #include "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 const char kKeyLeft[] = "Left"; 202 const char kKeyLeft[] = "Left";
203 const char kKeyMacCtrl[] = "MacCtrl"; 203 const char kKeyMacCtrl[] = "MacCtrl";
204 const char kKeyMediaNextTrack[] = "MediaNextTrack"; 204 const char kKeyMediaNextTrack[] = "MediaNextTrack";
205 const char kKeyMediaPlayPause[] = "MediaPlayPause"; 205 const char kKeyMediaPlayPause[] = "MediaPlayPause";
206 const char kKeyMediaPrevTrack[] = "MediaPrevTrack"; 206 const char kKeyMediaPrevTrack[] = "MediaPrevTrack";
207 const char kKeyMediaStop[] = "MediaStop"; 207 const char kKeyMediaStop[] = "MediaStop";
208 const char kKeyPgDwn[] = "PageDown"; 208 const char kKeyPgDwn[] = "PageDown";
209 const char kKeyPgUp[] = "PageUp"; 209 const char kKeyPgUp[] = "PageUp";
210 const char kKeyPeriod[] = "Period"; 210 const char kKeyPeriod[] = "Period";
211 const char kKeyRight[] = "Right"; 211 const char kKeyRight[] = "Right";
212 const char kKeySearch[] = "Search";
212 const char kKeySeparator[] = "+"; 213 const char kKeySeparator[] = "+";
213 const char kKeyShift[] = "Shift"; 214 const char kKeyShift[] = "Shift";
214 const char kKeyTab[] = "Tab"; 215 const char kKeyTab[] = "Tab";
215 const char kKeyUp[] = "Up"; 216 const char kKeyUp[] = "Up";
216 const char kRunAtDocumentStart[] = "document_start"; 217 const char kRunAtDocumentStart[] = "document_start";
217 const char kRunAtDocumentEnd[] = "document_end"; 218 const char kRunAtDocumentEnd[] = "document_end";
218 const char kRunAtDocumentIdle[] = "document_idle"; 219 const char kRunAtDocumentIdle[] = "document_idle";
219 const char kPageActionCommandEvent[] = "_execute_page_action"; 220 const char kPageActionCommandEvent[] = "_execute_page_action";
220 const char kPageActionTypeTab[] = "tab"; 221 const char kPageActionTypeTab[] = "tab";
221 const char kPageActionTypePermanent[] = "permanent"; 222 const char kPageActionTypePermanent[] = "permanent";
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 const char kWebRequestConflictsWithLazyBackground[] = 724 const char kWebRequestConflictsWithLazyBackground[] =
724 "The 'webRequest' API cannot be used with event pages."; 725 "The 'webRequest' API cannot be used with event pages.";
725 #if defined(OS_CHROMEOS) 726 #if defined(OS_CHROMEOS)
726 const char kIllegalPlugins[] = 727 const char kIllegalPlugins[] =
727 "Extensions cannot install plugins on Chrome OS"; 728 "Extensions cannot install plugins on Chrome OS";
728 #endif 729 #endif
729 730
730 } // namespace manifest_errors 731 } // namespace manifest_errors
731 732
732 } // namespace extensions 733 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698