OLD | NEW |
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 #include "chrome/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 const char kIsolation[] = "app.isolation"; | 51 const char kIsolation[] = "app.isolation"; |
52 const char kJs[] = "js"; | 52 const char kJs[] = "js"; |
53 const char kKey[] = "key"; | 53 const char kKey[] = "key"; |
54 const char kKeycode[] = "keyCode"; | 54 const char kKeycode[] = "keyCode"; |
55 const char kLanguage[] = "language"; | 55 const char kLanguage[] = "language"; |
56 const char kLaunch[] = "app.launch"; | 56 const char kLaunch[] = "app.launch"; |
57 const char kLaunchContainer[] = "app.launch.container"; | 57 const char kLaunchContainer[] = "app.launch.container"; |
58 const char kLaunchHeight[] = "app.launch.height"; | 58 const char kLaunchHeight[] = "app.launch.height"; |
59 const char kLaunchLocalPath[] = "app.launch.local_path"; | 59 const char kLaunchLocalPath[] = "app.launch.local_path"; |
60 const char kLaunchWebURL[] = "app.launch.web_url"; | 60 const char kLaunchWebURL[] = "app.launch.web_url"; |
| 61 const char kLaunchMaxHeight[] = "app.launch.max_height"; |
| 62 const char kLaunchMaxWidth[] = "app.launch.max_width"; |
61 const char kLaunchMinHeight[] = "app.launch.min_height"; | 63 const char kLaunchMinHeight[] = "app.launch.min_height"; |
62 const char kLaunchMinWidth[] = "app.launch.min_width"; | 64 const char kLaunchMinWidth[] = "app.launch.min_width"; |
63 const char kLaunchWidth[] = "app.launch.width"; | 65 const char kLaunchWidth[] = "app.launch.width"; |
64 const char kLayouts[] = "layouts"; | 66 const char kLayouts[] = "layouts"; |
65 const char kManifestVersion[] = "manifest_version"; | 67 const char kManifestVersion[] = "manifest_version"; |
66 const char kMatches[] = "matches"; | 68 const char kMatches[] = "matches"; |
67 const char kMinimumChromeVersion[] = "minimum_chrome_version"; | 69 const char kMinimumChromeVersion[] = "minimum_chrome_version"; |
68 const char kName[] = "name"; | 70 const char kName[] = "name"; |
69 const char kNaClModules[] = "nacl_modules"; | 71 const char kNaClModules[] = "nacl_modules"; |
70 const char kNaClModulesMIMEType[] = "mime_type"; | 72 const char kNaClModulesMIMEType[] = "mime_type"; |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; | 532 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; |
531 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; | 533 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; |
532 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; | 534 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; |
533 #if defined(OS_CHROMEOS) | 535 #if defined(OS_CHROMEOS) |
534 const char kAccessExtensionPath[] = | 536 const char kAccessExtensionPath[] = |
535 "/usr/share/chromeos-assets/accessibility/extensions"; | 537 "/usr/share/chromeos-assets/accessibility/extensions"; |
536 const char kChromeVoxDirectoryName[] = "access_chromevox"; | 538 const char kChromeVoxDirectoryName[] = "access_chromevox"; |
537 #endif | 539 #endif |
538 | 540 |
539 } | 541 } |
OLD | NEW |