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

1 2

  /external/chromium_org/extensions/common/manifest_handlers/
background_info.cc 37 static base::LazyInstance<BackgroundInfo> g_empty_background_info =
40 const BackgroundInfo& GetBackgroundInfo(const Extension* extension) {
41 BackgroundInfo* info = static_cast<BackgroundInfo*>(
50 BackgroundInfo::BackgroundInfo()
55 BackgroundInfo::~BackgroundInfo() {
59 GURL BackgroundInfo::GetBackgroundURL(const Extension* extension) {
60 const BackgroundInfo& info = GetBackgroundInfo(extension)
    [all...]
background_info.h 18 class BackgroundInfo : public Extension::ManifestData {
20 BackgroundInfo();
21 virtual ~BackgroundInfo();
88 DISALLOW_COPY_AND_ASSIGN(BackgroundInfo);
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_background_unittest.cc 41 BackgroundInfo::GetBackgroundScripts(extension.get());
46 EXPECT_TRUE(BackgroundInfo::HasBackgroundPage(extension.get()));
49 BackgroundInfo::GetBackgroundURL(extension.get()).path());
61 BackgroundInfo::GetBackgroundURL(extension.get()).path());
62 EXPECT_TRUE(BackgroundInfo::AllowJSAccess(extension.get()));
71 BackgroundInfo::GetBackgroundURL(extension.get()).path());
83 EXPECT_FALSE(BackgroundInfo::AllowJSAccess(extension.get()));
87 EXPECT_FALSE(BackgroundInfo::AllowJSAccess(extension.get()));
102 EXPECT_TRUE(BackgroundInfo::HasLazyBackgroundPage(extension.get()));
extension_manifests_service_worker_unittest.cc 103 BackgroundInfo::GetServiceWorkerScript(extension.get()));
105 EXPECT_TRUE(BackgroundInfo::HasServiceWorker(extension.get()));
  /external/chromium_org/extensions/browser/
lazy_background_task_queue.cc 46 if (BackgroundInfo::HasBackgroundPage(extension)) {
79 if (extension && BackgroundInfo::HasLazyBackgroundPage(extension)) {
88 extension, BackgroundInfo::GetBackgroundURL(extension))) {
111 if (BackgroundInfo::HasLazyBackgroundPage(extension))
129 if (host && BackgroundInfo::HasLazyBackgroundPage(extension)) {
runtime_data.cc 22 if (!BackgroundInfo::HasPersistentBackgroundPage(extension))
process_manager.cc 123 if (BackgroundInfo::HasPersistentBackgroundPage(extension))
125 BackgroundInfo::GetBackgroundURL(extension));
415 if (!BackgroundInfo::HasLazyBackgroundPage(extension))
422 if (!BackgroundInfo::HasLazyBackgroundPage(extension))
431 if (!BackgroundInfo::HasLazyBackgroundPage(extension))
476 if (!BackgroundInfo::HasLazyBackgroundPage(extension))
827 if (BackgroundInfo::HasLazyBackgroundPage(host->extension())) {
    [all...]
extension_host.cc 152 extension_ && BackgroundInfo::HasLazyBackgroundPage(extension_)) {
270 if (extension_ && BackgroundInfo::HasLazyBackgroundPage(extension_)) {
event_router.cc 636 if (BackgroundInfo::HasLazyBackgroundPage(extension)) {
654 BackgroundInfo::HasLazyBackgroundPage(host->extension()))
687 if (BackgroundInfo::HasLazyBackgroundPage(extension)) {
extension_protocols.cc 93 extensions::BackgroundInfo::GetBackgroundScripts(extension_.get());
  /external/chromium_org/extensions/renderer/
lazy_background_page_native_handler.cc 58 return (extension && BackgroundInfo::HasLazyBackgroundPage(extension) &&
event_bindings.cc 61 return (extension && BackgroundInfo::HasLazyBackgroundPage(extension) &&
  /external/chromium_org/chrome/browser/background/
background_contents_service.cc 61 using extensions::BackgroundInfo;
398 if (extension && BackgroundInfo::HasBackgroundPage(extension))
409 BackgroundInfo::HasBackgroundPage(extension)) {
422 BackgroundInfo::GetBackgroundURL(extension),
486 if (BackgroundInfo::HasBackgroundPage(extension)) {
570 if (extension && BackgroundInfo::HasBackgroundPage(extension)) {
572 BackgroundInfo::GetBackgroundURL(extension),
620 BackgroundInfo::HasBackgroundPage(extension)) {
622 BackgroundInfo::GetBackgroundURL(extension),
background_application_list_model.cc 323 if (extensions::BackgroundInfo::HasBackgroundPage(&extension))
  /external/chromium_org/chrome/browser/extensions/api/messaging/
extension_message_port.cc 62 if (host && BackgroundInfo::HasLazyBackgroundPage(host->extension()))
  /external/chromium_org/chrome/browser/extensions/
extension_api_unittest.cc 35 GURL url = BackgroundInfo::GetBackgroundURL(extension());
installed_loader.cc 118 if (!BackgroundInfo::HasBackgroundPage(extension))
120 if (BackgroundInfo::HasPersistentBackgroundPage(extension))
menu_manager.cc 781 if (!BackgroundInfo::HasLazyBackgroundPage(extension))
833 if (store_ && BackgroundInfo::HasLazyBackgroundPage(extension)) {
  /external/chromium_org/chrome/browser/extensions/api/context_menus/
context_menus_api.cc 44 if (BackgroundInfo::HasLazyBackgroundPage(GetExtension())) {
context_menus_api_helpers.h 133 if (!is_webview && BackgroundInfo::HasLazyBackgroundPage(extension) &&
  /external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_api.cc 483 BackgroundInfo::HasGeneratedBackgroundPage(extension);
496 (web_contents->GetURL() == BackgroundInfo::GetBackgroundURL(extension));
516 BackgroundInfo::HasGeneratedBackgroundPage(extension);
524 (web_contents->GetURL() == BackgroundInfo::GetBackgroundURL(extension));
575 if (BackgroundInfo::HasLazyBackgroundPage(extension) &&
579 BackgroundInfo::GetBackgroundURL(extension),
583 BackgroundInfo::HasGeneratedBackgroundPage(extension)));
598 if (BackgroundInfo::HasLazyBackgroundPage(extension) &&
602 BackgroundInfo::GetBackgroundURL(extension),
606 BackgroundInfo::HasGeneratedBackgroundPage(extension)))
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_settings_handler.cc     [all...]
  /external/chromium_org/chrome/browser/extensions/api/autotest_private/
autotest_private_api.cc 174 "backgroundUrl", BackgroundInfo::GetBackgroundURL(extension).spec());
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_browser_handlers.cc 322 !extensions::BackgroundInfo::HasLazyBackgroundPage(extension_.get())) {
  /external/chromium_org/chrome/browser/extensions/api/input_ime/
input_ime_api.cc 107 extensions::BackgroundInfo* info = static_cast<extensions::BackgroundInfo*>(

Completed in 1099 milliseconds

1 2