| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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* kApp = "app"; | 10 const char* kApp = "app"; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 const char* kPluginsPath = "path"; | 50 const char* kPluginsPath = "path"; |
| 51 const char* kPluginsPublic = "public"; | 51 const char* kPluginsPublic = "public"; |
| 52 const char* kPublicKey = "key"; | 52 const char* kPublicKey = "key"; |
| 53 const char* kRunAt = "run_at"; | 53 const char* kRunAt = "run_at"; |
| 54 const char* kSignature = "signature"; | 54 const char* kSignature = "signature"; |
| 55 const char* kTheme = "theme"; | 55 const char* kTheme = "theme"; |
| 56 const char* kThemeColors = "colors"; | 56 const char* kThemeColors = "colors"; |
| 57 const char* kThemeDisplayProperties = "properties"; | 57 const char* kThemeDisplayProperties = "properties"; |
| 58 const char* kThemeImages = "images"; | 58 const char* kThemeImages = "images"; |
| 59 const char* kThemeTints = "tints"; | 59 const char* kThemeTints = "tints"; |
| 60 const char* kToolstripMoleHeight = "mole_height"; | |
| 61 const char* kToolstripMolePath = "mole"; | |
| 62 const char* kToolstripPath = "path"; | 60 const char* kToolstripPath = "path"; |
| 63 const char* kToolstrips = "toolstrips"; | 61 const char* kToolstrips = "toolstrips"; |
| 64 const char* kType = "type"; | 62 const char* kType = "type"; |
| 65 const char* kUpdateURL = "update_url"; | 63 const char* kUpdateURL = "update_url"; |
| 66 const char* kVersion = "version"; | 64 const char* kVersion = "version"; |
| 67 const char* kWebURLs = "app.urls"; | 65 const char* kWebURLs = "app.urls"; |
| 68 } // namespace extension_manifest_keys | 66 } // namespace extension_manifest_keys |
| 69 | 67 |
| 70 namespace extension_manifest_values { | 68 namespace extension_manifest_values { |
| 71 const char* kRunAtDocumentStart = "document_start"; | 69 const char* kRunAtDocumentStart = "document_start"; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 const char* kDecodedImagesFilename = "DECODED_IMAGES"; | 287 const char* kDecodedImagesFilename = "DECODED_IMAGES"; |
| 290 | 288 |
| 291 // The file to write our decoded message catalogs to, relative to the | 289 // The file to write our decoded message catalogs to, relative to the |
| 292 // extension_path. | 290 // extension_path. |
| 293 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; | 291 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
| 294 } | 292 } |
| 295 | 293 |
| 296 namespace extension_misc { | 294 namespace extension_misc { |
| 297 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; | 295 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; |
| 298 } | 296 } |
| OLD | NEW |