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

Side by Side Diff: chrome/common/extensions/extension_constants.cc

Issue 7432006: Add an experimental permissions API for extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 5 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/common/extensions/extension_constants.h" 5 #include "chrome/common/extensions/extension_constants.h"
6 6
7 namespace extension_manifest_keys { 7 namespace extension_manifest_keys {
8 8
9 const char* kAllFrames = "all_frames"; 9 const char* kAllFrames = "all_frames";
10 const char* kAltKey = "altKey"; 10 const char* kAltKey = "altKey";
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 const char* kLaunchWidth = "app.launch.width"; 43 const char* kLaunchWidth = "app.launch.width";
44 const char* kLayouts = "layouts"; 44 const char* kLayouts = "layouts";
45 const char* kMatches = "matches"; 45 const char* kMatches = "matches";
46 const char* kMinimumChromeVersion = "minimum_chrome_version"; 46 const char* kMinimumChromeVersion = "minimum_chrome_version";
47 const char* kName = "name"; 47 const char* kName = "name";
48 const char* kNaClModules = "nacl_modules"; 48 const char* kNaClModules = "nacl_modules";
49 const char* kNaClModulesMIMEType = "mime_type"; 49 const char* kNaClModulesMIMEType = "mime_type";
50 const char* kNaClModulesPath = "path"; 50 const char* kNaClModulesPath = "path";
51 const char* kOmnibox = "omnibox"; 51 const char* kOmnibox = "omnibox";
52 const char* kOmniboxKeyword = "omnibox.keyword"; 52 const char* kOmniboxKeyword = "omnibox.keyword";
53 const char* kOptionalPermissions = "optional_permissions";
53 const char* kOptionsPage = "options_page"; 54 const char* kOptionsPage = "options_page";
54 const char* kPageAction = "page_action"; 55 const char* kPageAction = "page_action";
55 const char* kPageActionDefaultIcon = "default_icon"; 56 const char* kPageActionDefaultIcon = "default_icon";
56 const char* kPageActionDefaultPopup = "default_popup"; 57 const char* kPageActionDefaultPopup = "default_popup";
57 const char* kPageActionDefaultTitle = "default_title"; 58 const char* kPageActionDefaultTitle = "default_title";
58 const char* kPageActionIcons = "icons"; 59 const char* kPageActionIcons = "icons";
59 const char* kPageActionId = "id"; 60 const char* kPageActionId = "id";
60 const char* kPageActionPopup = "popup"; 61 const char* kPageActionPopup = "popup";
61 const char* kPageActionPopupHeight = "height"; 62 const char* kPageActionPopupHeight = "height";
62 const char* kPageActionPopupPath = "path"; 63 const char* kPageActionPopupPath = "path";
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; 419 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb";
419 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng"; 420 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng";
420 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; 421 const char* kAppsPromoHistogram = "Extensions.AppsPromo";
421 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; 422 const char* kAppLaunchHistogram = "Extensions.AppLaunch";
422 #if defined(OS_CHROMEOS) 423 #if defined(OS_CHROMEOS)
423 const char* kAccessExtensionPath = 424 const char* kAccessExtensionPath =
424 "/usr/share/chromeos-assets/accessibility/extensions"; 425 "/usr/share/chromeos-assets/accessibility/extensions";
425 const char* kChromeVoxDirectoryName = "access_chromevox"; 426 const char* kChromeVoxDirectoryName = "access_chromevox";
426 #endif 427 #endif
427 } 428 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698