HomeSort by relevance Sort by last modified time
    Searched refs:crx_path (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/
test_extension_dir.cc 43 base::FilePath crx_path = local
53 crx_path,
61 if (!base::PathExists(crx_path)) {
62 ADD_FAILURE() << crx_path.value() << " was not created.";
65 return crx_path;
crx_installer_browsertest.cc 162 const base::FilePath& crx_path) {
169 installer->InstallCrx(crx_path);
184 base::FilePath crx_path = PackExtension(ext_path); local
185 EXPECT_FALSE(crx_path.empty());
187 crx_path);
240 base::FilePath crx_path = PackExtension( local
242 ASSERT_FALSE(crx_path.empty());
248 EXPECT_FALSE(InstallExtension(crx_path, 0));
249 EXPECT_TRUE(InstallExtensionFromWebstore(crx_path, 1));
273 base::FilePath crx_path = PackExtension local
363 base::FilePath crx_path = test_data_dir_.AppendASCII("theme_hidpi_crx"); local
391 base::FilePath crx_path = test_data_dir_.AppendASCII("delayed_install"); local
460 base::FilePath crx_path = test_data_dir_.AppendASCII("theme_hidpi_crx") local
485 base::FilePath crx_path = local
    [all...]
extension_creator.h 43 const base::FilePath& crx_path,
55 // directory that should contain all the extension resources. |crx_path| is
62 const base::FilePath& crx_path,
88 // Export installable .crx to |crx_path|.
92 const base::FilePath& crx_path);
extension_creator.cc 38 const base::FilePath& crx_path,
78 if (!(run_flags & kOverwriteCRX) && base::PathExists(crx_path)) {
241 const base::FilePath& crx_path) {
242 if (base::PathExists(crx_path))
243 base::DeleteFile(crx_path, false);
244 ScopedStdioHandle crx_handle(base::OpenFile(crx_path, "wb"));
289 const base::FilePath& crx_path,
294 if (!InitializeInput(extension_dir, crx_path, private_key_path,
324 WriteCRX(zip_path, key_pair.get(), signature, crx_path)) {
startup_helper.h 23 const base::FilePath& crx_path,
extension_browsertest.cc 244 base::FilePath crx_path = temp_dir_.path().AppendASCII("temp.crx"); local
245 if (!base::DeleteFile(crx_path, false)) {
246 ADD_FAILURE() << "Failed to delete crx: " << crx_path.value();
257 pem_path_out = crx_path.DirName().AppendASCII("temp.pem");
264 return PackExtensionWithOptions(dir_path, crx_path, pem_path, pem_path_out);
269 const base::FilePath& crx_path,
284 crx_path,
293 if (!base::PathExists(crx_path)) {
294 ADD_FAILURE() << crx_path.value() << " was not created.";
297 return crx_path;
422 base::FilePath crx_path = path; local
    [all...]
sandboxed_unpacker.h 78 // Unpacks the extension in |crx_path| into a temporary directory and calls
81 SandboxedUnpacker(const base::FilePath& crx_path,
extension_disabled_ui_browsertest.cc 81 const base::FilePath& crx_path,
84 if (UpdateExtension(extension->id(), crx_path, expected_change))
startup_helper.cc 44 const base::FilePath& crx_path,
49 PackExtensionJob::StandardSuccessMessage(crx_path,
  /external/chromium/chrome/browser/extensions/
extension_creator.h 30 const FilePath& crx_path,
63 // Export installable .crx to |crx_path|.
67 const FilePath& crx_path);
extensions_startup.h 21 virtual void OnPackSuccess(const FilePath& crx_path,
crx_installer_browsertest.cc 61 FilePath crx_path = test_data_dir_.AppendASCII(crx_relpath); local
62 installer->InstallCrx(crx_path);
extensions_startup.cc 21 const FilePath& crx_path,
27 crx_path, output_private_key_path)));
sandboxed_extension_unpacker_unittest.cc 83 FilePath crx_path = temp_dir_.path().AppendASCII(crx_name); local
84 ASSERT_TRUE(file_util::CopyFile(original_path, crx_path)) <<
86 ", Crx path: " << crx_path.value();
88 unpacker_.reset(new ExtensionUnpacker(crx_path));
96 new SandboxedExtensionUnpacker(crx_path, NULL, client_);
extension_browsertest.cc 135 FilePath crx_path = temp_dir_.path().AppendASCII("temp.crx"); local
136 if (!file_util::Delete(crx_path, false)) {
137 ADD_FAILURE() << "Failed to delete crx: " << crx_path.value();
141 FilePath pem_path = crx_path.DirName().AppendASCII("temp.pem");
154 crx_path,
161 if (!file_util::PathExists(crx_path)) {
162 ADD_FAILURE() << crx_path.value() << " was not created.";
165 return crx_path;
231 FilePath crx_path = path; local
232 if (crx_path.Extension() != FILE_PATH_LITERAL(".crx"))
    [all...]
extension_creator.cc 191 const FilePath& crx_path) {
192 if (file_util::PathExists(crx_path))
193 file_util::Delete(crx_path, false);
194 ScopedStdioHandle crx_handle(file_util::OpenFile(crx_path, "wb"));
239 const FilePath& crx_path,
267 WriteCRX(zip_path, key_pair.get(), signature, crx_path)) {
sandboxed_extension_unpacker.h 92 // Unpacks the extension in |crx_path| into a temporary directory and calls
95 SandboxedExtensionUnpacker(const FilePath& crx_path,
extension_prefs.h 234 const FilePath& crx_path,
245 FilePath* crx_path,
  /external/chromium/chrome/common/extensions/
extension_unpacker_unittest.cc 33 FilePath crx_path = temp_dir_.path().AppendASCII(crx_name); local
34 ASSERT_TRUE(file_util::CopyFile(original_path, crx_path)) <<
36 ", Crx path " << crx_path.value();
38 unpacker_.reset(new ExtensionUnpacker(crx_path));
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_browsertest.cc 84 base::FilePath crx_path = path; local
85 DCHECK(crx_path.Extension() == FILE_PATH_LITERAL(".crx"));
86 if (crx_path.empty())
102 installer->InstallCrx(crx_path);
  /external/chromium_org/chrome/browser/chromeos/policy/
app_pack_updater.cc 175 std::string crx_path; local
179 &crx_path);
181 if (!crx_path.empty())
182 SetScreenSaverPath(base::FilePath(crx_path));
  /external/chromium_org/chrome/utility/extensions/
unpacker_unittest.cc 44 base::FilePath crx_path = temp_dir_.path().AppendASCII(crx_name); local
45 ASSERT_TRUE(base::CopyFile(original_path, crx_path)) <<
47 ", Crx path " << crx_path.value();
49 unpacker_.reset(new Unpacker(crx_path,
  /external/chromium/chrome/browser/automation/
automation_provider.h 249 void InstallExtension(const FilePath& crx_path,
254 void InstallExtensionAndGetHandle(const FilePath& crx_path,
  /external/chromium_org/chrome/browser/chromeos/kiosk_mode/
kiosk_mode_screensaver.cc 55 ScreensaverUnpackerClient(const base::FilePath& crx_path,
57 : crx_path_(crx_path),
  /external/chromium_org/tools/telemetry/telemetry/page/
extensions_profile_creator.py 54 def _GetExtensionInfoFromCRX(crx_path):
63 crx_path: path to crx archive to look at.
68 crx_zip = zipfile.ZipFile(crx_path)

Completed in 236 milliseconds

1 2