Lines Matching refs:extension
24 #include "chrome/common/extensions/extension.h"
32 // each background page: the parent application/extension ID, and a boolean
163 const Extension* extension = Details<const Extension>(details).ptr();
164 if (!extension->is_hosted_app() &&
165 extension->background_url().is_valid())
166 OnBackgroundPageLoaded(extension->id());
170 std::string id = Details<UnloadedExtensionInfo>(details)->extension->id();
186 // 1) Walk our list, and make sure that there's a corresponding extension for
187 // each item in the list. If not, delete it (extension was uninstalled).
202 // Check to make sure that the parent extension is still enabled.
203 const Extension* extension = extensions_service->GetExtensionById(
205 // If the extension is not loaded, add the id to our list of keys to delete
207 if (!extension) {
224 // Any extension with a background page should be in our list.
226 // If we have not seen this extension ID before, add it to our list.
272 // No need to update our list if this extension was already known.