HomeSort by relevance Sort by last modified time
    Searched full:private_key_path (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/extensions/
extension_creator.h 23 // private key that is either provided in |private_key_path| or is internal
31 const FilePath& private_key_path,
40 // |private_key_path| is the optional path to an existing private key to sign
44 const FilePath& private_key_path,
47 // Reads private key from |private_key_path|.
48 crypto::RSAPrivateKey* ReadInputKey(const FilePath& private_key_path);
50 // Generates a key pair and writes the private key to |private_key_path|
52 crypto::RSAPrivateKey* GenerateKey(const FilePath& private_key_path);
extension_creator.cc 29 const FilePath& private_key_path,
47 if (!private_key_path.value().empty() &&
48 !file_util::PathExists(private_key_path)) {
56 if (private_key_path.value().empty() &&
78 private_key_path) {
79 if (!file_util::PathExists(private_key_path)) {
86 if (!file_util::ReadFileToString(private_key_path,
240 const FilePath& private_key_path,
243 if (!InitializeInput(extension_dir, private_key_path,
250 if (!private_key_path.value().empty()
    [all...]
extensions_startup.cc 56 FilePath private_key_path; local
58 private_key_path = cmd_line.GetSwitchValuePath(switches::kPackExtensionKey);
62 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path);
extensions_ui.cc 520 std::string private_key_path; local
523 CHECK(args->GetString(1, &private_key_path));
527 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path));
541 if (!private_key_path.empty() && key_file.empty()) {
    [all...]
extension_service_unittest.cc 877 const FilePath& private_key_path);
895 const FilePath& private_key_path) {
903 EXPECT_EQ(expected_private_key_path_.value(), private_key_path.value());
904 ASSERT_TRUE(file_util::PathExists(private_key_path));
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
extension_settings_handler.cc 613 std::string private_key_path; local
616 CHECK(args->GetString(1, &private_key_path));
620 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path));
634 if (!private_key_path.empty() && key_file.empty()) {
    [all...]

Completed in 223 milliseconds