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

1 2

  /external/chromium_org/chrome/browser/download/
download_crx_util_android.cc 21 scoped_refptr<extensions::CrxInstaller> OpenChromeExtension(
24 NOTIMPLEMENTED() << "CrxInstaller not implemented on Android";
25 scoped_refptr<extensions::CrxInstaller> installer(
26 extensions::CrxInstaller::CreateSilent(NULL));
download_crx_util.h 23 class CrxInstaller;
37 scoped_refptr<extensions::CrxInstaller> OpenChromeExtension(
download_crx_util.cc 72 scoped_refptr<extensions::CrxInstaller> OpenChromeExtension(
81 scoped_refptr<extensions::CrxInstaller> installer(
82 extensions::CrxInstaller::Create(
93 extensions::CrxInstaller::OffStoreInstallAllowedBecausePref);
chrome_download_manager_delegate.h 29 class CrxInstaller;
39 struct hash<extensions::CrxInstaller*> {
40 std::size_t operator()(extensions::CrxInstaller* const& p) const {
166 typedef base::hash_map<extensions::CrxInstaller*,
chrome_download_manager_delegate.cc 308 scoped_refptr<extensions::CrxInstaller> crx_installer =
316 content::Source<extensions::CrxInstaller>(crx_installer.get()));
574 scoped_refptr<extensions::CrxInstaller> installer =
575 content::Source<extensions::CrxInstaller>(source).ptr();
  /external/chromium_org/chrome/browser/chromeos/extensions/
install_limiter.h 38 void Add(const scoped_refptr<CrxInstaller>& installer,
42 // DeferredInstall holds info to run a CrxInstaller later.
44 DeferredInstall(const scoped_refptr<CrxInstaller>& installer,
48 const scoped_refptr<CrxInstaller> installer;
53 typedef std::set<scoped_refptr<CrxInstaller> > CrxInstallerSet;
58 void AddWithSize(const scoped_refptr<CrxInstaller>& installer,
67 void RunInstall(const scoped_refptr<CrxInstaller>& installer,
install_limiter.cc 40 const scoped_refptr<CrxInstaller>& installer,
66 void InstallLimiter::Add(const scoped_refptr<CrxInstaller>& installer,
83 const scoped_refptr<CrxInstaller>& installer,
119 void InstallLimiter::RunInstall(const scoped_refptr<CrxInstaller>& installer,
123 content::Source<CrxInstaller>(installer.get()));
138 const scoped_refptr<CrxInstaller> installer =
139 content::Source<extensions::CrxInstaller>(source).ptr();
external_cache.cc 113 extensions::CrxInstaller* installer =
114 content::Source<extensions::CrxInstaller>(source).ptr();
  /external/chromium/chrome/browser/extensions/
crx_installer.cc 56 void CrxInstaller::SetWhitelistedInstallId(const std::string& id) {
62 void CrxInstaller::SetWhitelistedManifest(const std::string& id,
70 const DictionaryValue* CrxInstaller::GetWhitelistedManifest(
80 DictionaryValue* CrxInstaller::RemoveWhitelistedManifest(
92 bool CrxInstaller::IsIdWhitelisted(const std::string& id) {
99 bool CrxInstaller::ClearWhitelistedInstallId(const std::string& id) {
109 CrxInstaller::CrxInstaller(ExtensionService* frontend,
123 CrxInstaller::~CrxInstaller() {
    [all...]
crx_installer_browsertest.cc 54 scoped_refptr<CrxInstaller> installer(
55 new CrxInstaller(service, mock_install_ui /* ownership transferred */));
59 CrxInstaller::SetWhitelistedInstallId(id);
crx_installer.h 38 // IMPORTANT: Callers should keep a reference to a CrxInstaller while they are
41 // scoped_refptr<CrxInstaller> installer(new CrxInstaller(...));
45 class CrxInstaller
85 CrxInstaller(ExtensionService* frontend,
138 ~CrxInstaller();
258 DISALLOW_COPY_AND_ASSIGN(CrxInstaller);
extension_webstore_private_api.cc 138 // This gets cleared in CrxInstaller::ConfirmInstall(). TODO(asargent) - in
141 CrxInstaller::SetWhitelistedInstallId(id);
384 CrxInstaller::SetWhitelistedManifest(id_, parsed_manifest_.release());
412 if (!CrxInstaller::IsIdWhitelisted(id) &&
413 !CrxInstaller::GetWhitelistedManifest(id)) {
extension_browsertest.cc 238 scoped_refptr<CrxInstaller> installer(
239 new CrxInstaller(service, install_ui));
  /external/chromium_org/chrome/browser/extensions/
crx_installer.cc 75 scoped_refptr<CrxInstaller> CrxInstaller::CreateSilent(
77 return new CrxInstaller(frontend->AsWeakPtr(),
83 scoped_refptr<CrxInstaller> CrxInstaller::Create(
86 return new CrxInstaller(frontend->AsWeakPtr(), client.Pass(), NULL);
90 scoped_refptr<CrxInstaller> CrxInstaller::Create(
94 return new CrxInstaller(service->AsWeakPtr(), client.Pass(), approval);
97 CrxInstaller::CrxInstaller
    [all...]
extension_functional_browsertest.cc 29 scoped_refptr<extensions::CrxInstaller> installer(
30 extensions::CrxInstaller::CreateSilent(service));
35 extensions::CrxInstaller::OffStoreInstallAllowedInTest);
39 content::Source<extensions::CrxInstaller>(installer.get()));
crx_installer.h 54 // IMPORTANT: Callers should keep a reference to a CrxInstaller while they are
57 // scoped_refptr<CrxInstaller> installer(new CrxInstaller(...));
66 class CrxInstaller
82 static scoped_refptr<CrxInstaller> CreateSilent(ExtensionService* service);
85 static scoped_refptr<CrxInstaller> Create(
91 static scoped_refptr<CrxInstaller> Create(
204 CrxInstaller(base::WeakPtr<ExtensionService> service_weak,
207 virtual ~CrxInstaller();
400 DISALLOW_COPY_AND_ASSIGN(CrxInstaller);
    [all...]
test_extension_service.h 18 class CrxInstaller;
39 extensions::CrxInstaller** out_crx_installer) OVERRIDE;
crx_installer_browsertest.cc 37 // ownership of it to CrxInstaller, so it isn't safe to hang this data on
134 scoped_refptr<CrxInstaller> InstallWithPrompt(
146 return scoped_refptr<CrxInstaller>();
156 scoped_refptr<CrxInstaller> installer(
157 CrxInstaller::Create(service,
183 scoped_refptr<CrxInstaller> installer =
229 scoped_refptr<CrxInstaller> installer =
338 scoped_refptr<CrxInstaller> crx_installer(
339 CrxInstaller::Create(service, mock_prompt->CreatePrompt()));
345 CrxInstaller::OffStoreInstallAllowedInTest)
    [all...]
test_extension_service.cc 35 extensions::CrxInstaller** out_crx_installer) {
webstore_installer.cc 221 content::Source<CrxInstaller>(NULL));
259 CrxInstaller* installer = content::Source<CrxInstaller>(source).ptr();
278 CrxInstaller* crx_installer = content::Source<CrxInstaller>(source).ptr();
424 // download system will then pass the crx to the CrxInstaller.
extension_service.h 63 class CrxInstaller;
91 extensions::CrxInstaller** out_crx_installer) = 0;
312 // CrxInstaller directly instead.
317 extensions::CrxInstaller** out_crx_installer) OVERRIDE;
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
install_extension_handler.cc 101 scoped_refptr<CrxInstaller> crx_installer(CrxInstaller::Create(
106 CrxInstaller::OffStoreInstallAllowedFromSettingsPage);
  /external/chromium_org/chrome/browser/infobars/
infobars_browsertest.cc 46 scoped_refptr<extensions::CrxInstaller> installer(
47 extensions::CrxInstaller::Create(service, client.Pass()));
  /external/chromium_org/chrome/browser/ui/webui/ntp/
app_launcher_handler.cc 63 using extensions::CrxInstaller;
332 CrxInstaller* crx_installer = content::Source<CrxInstaller>(source).ptr();
465 content::Source<CrxInstaller>(NULL));
734 scoped_refptr<CrxInstaller> installer(
735 CrxInstaller::CreateSilent(extension_service_));
  /external/chromium/chrome/browser/automation/
automation_provider.cc 775 scoped_refptr<CrxInstaller> installer(
776 new CrxInstaller(service, NULL)); // silent install, no UI
808 scoped_refptr<CrxInstaller> installer(new CrxInstaller(service, client));
    [all...]

Completed in 1042 milliseconds

1 2