Home
last modified time | relevance | path

Searched refs:OnUnpackSuccess (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/extensions/
Dsandboxed_extension_unpacker_unittest.cc28 void OnUnpackSuccess(const FilePath& temp_dir, in OnUnpackSuccess() function
41 MOCK_METHOD3(OnUnpackSuccess,
50 ON_CALL(*this, OnUnpackSuccess(_, _, _)) in DelegateToFake()
51 .WillByDefault(Invoke(::OnUnpackSuccess)); in DelegateToFake()
160 EXPECT_CALL(*client_, OnUnpackSuccess(_, _, _)); in TEST_F()
182 EXPECT_CALL(*client_, OnUnpackSuccess(_, _, _)); in TEST_F()
Dcrx_installer.cc182 OnUnpackSuccess(extension->path(), extension->path(), extension); in ConvertUserScriptOnFileThread()
205 OnUnpackSuccess(extension->path(), extension->path(), extension); in ConvertWebAppOnFileThread()
296 void CrxInstaller::OnUnpackSuccess(const FilePath& temp_dir, in OnUnpackSuccess() function in CrxInstaller
Dsandboxed_extension_unpacker.h30 virtual void OnUnpackSuccess(const FilePath& temp_dir,
Dcrx_installer.h152 virtual void OnUnpackSuccess(const FilePath& temp_dir,
Dsandboxed_extension_unpacker.cc419 client_->OnUnpackSuccess(temp_dir_.Take(), extension_root_, extension_); in ReportSuccess()