Searched defs:service (Results 126 - 150 of 675) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/extensions/
H A Dtheme_installed_infobar_delegate.cc51 ExtensionService* service = profile_->GetExtensionService(); local
52 if (service) {
54 service->GetExtensionById(previous_theme_id_, true);
H A Duser_script_listener.cc154 ExtensionService* service = local
156 for (ExtensionList::const_iterator it = service->extensions()->begin();
157 it != service->extensions()->end(); ++it) {
/external/chromium/chrome/browser/net/gaia/
H A Dtoken_service.h5 // The TokenService will supply authentication tokens for any service that
7 // the token service is expected to call ClientLogin to derive a new SID and
13 // A token service controller like the ChromiumOS login is expected to:
29 // if (IsServiceICareAbout(notification.service())) {
69 TokenAvailableDetails(const std::string& service, argument
71 : service_(service), token_(token) {}
72 const std::string& service() const { return service_; } function in class:TokenService::TokenAvailableDetails
83 TokenRequestFailedDetails(const std::string& service, argument
85 : service_(service), error_(error) {}
86 const std::string& service() cons function in class:TokenService::TokenRequestFailedDetails
[all...]
/external/chromium/chrome/browser/notifications/
H A Dnotification_exceptions_table_model.cc27 DesktopNotificationService* service)
28 : service_(service),
26 NotificationExceptionsTableModel( DesktopNotificationService* service) argument
/external/chromium/chrome/browser/search_engines/
H A Dutil.cc37 // number changes. Only pass in a non-NULL value for |service| if the removed
41 WebDataService* service) {
43 DCHECK(service == NULL || BrowserThread::CurrentlyOn(BrowserThread::UI));
51 if (service)
52 service->RemoveKeyword(**i);
69 WebDataService* service,
72 DCHECK(service == NULL || BrowserThread::CurrentlyOn(BrowserThread::UI));
118 if (service) {
119 service->UpdateKeyword(*existing_url);
144 if (service)
39 RemoveDuplicatePrepopulateIDs( std::vector<TemplateURL*>* template_urls, WebDataService* service) argument
67 MergeEnginesFromPrepopulateData( PrefService* prefs, WebDataService* service, std::vector<TemplateURL*>* template_urls, const TemplateURL** default_search_provider) argument
151 GetSearchProvidersUsingKeywordResult( const WDTypedResult& result, WebDataService* service, PrefService* prefs, std::vector<TemplateURL*>* template_urls, const TemplateURL** default_search_provider, int* new_resource_keyword_version) argument
[all...]
/external/chromium/chrome/browser/sessions/
H A Dsession_restore_browsertest.cc129 TabRestoreService* service = browser()->profile()->GetTabRestoreService(); local
130 service->ClearEntries();
135 EXPECT_EQ(1U, service->entries().size());
136 ASSERT_EQ(TabRestoreService::WINDOW, service->entries().front()->type);
138 static_cast<TabRestoreService::Window*>(service->entries().front());
141 // Find the SessionID for entry2. Since the session service was destroyed,
148 service->RestoreEntryById(NULL, tab.id, false);
154 EXPECT_EQ(1U, service->entries().size());
155 ASSERT_EQ(TabRestoreService::WINDOW, service->entries().front()->type);
156 window = static_cast<TabRestoreService::Window*>(service
168 TabRestoreService* service = browser()->profile()->GetTabRestoreService(); local
[all...]
H A Dsession_service_test_helper.cc18 SessionServiceTestHelper::SessionServiceTestHelper(SessionService* service) argument
19 : service_(service) {}
26 service()->RestoreSessionFromCommands(commands, valid_windows);
33 service()->SetTabWindow(window_id, tab_id);
34 service()->SetTabIndexInWindow(window_id, tab_id, visual_index);
36 service()->SetSelectedTabInWindow(window_id, visual_index);
43 service()->SetTabExtensionAppID(window_id, tab_id, extension_app_id);
46 // Be sure and null out service to force closing the file.
/external/chromium/chrome/browser/ssl/
H A Dssl_client_auth_handler.cc59 NotificationService* service = NotificationService::current(); local
60 service->Notify(NotificationType::SSL_CLIENT_AUTH_CERT_SELECTED,
/external/chromium/chrome/browser/sync/
H A Dbackend_migrator.cc23 BackendMigrator::BackendMigrator(ProfileSyncService* service, argument
25 : state_(IDLE), service_(service), manager_(manager),
H A Dprofile_sync_service_harness.h100 ProfileSyncService* service() { return service_; } function in class:ProfileSyncServiceHarness
/external/chromium/chrome/browser/ui/
H A Dbrowser_init_browsertest.cc28 ExtensionService* service = browser()->profile()->GetExtensionService(); local
29 *out_app_extension = service->GetExtensionById(
39 ExtensionService* service = browser()->profile()->GetExtensionService(); local
40 service->extension_prefs()->SetLaunchType(app_id, launch_type);
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_actions_container_browsertest.cc231 ExtensionService* service = browser()->profile()->GetExtensionService(); local
232 service->SetBrowserActionVisibility(service->GetExtensionById(idA, false),
245 ExtensionService* service = browser()->profile()->GetExtensionService(); local
246 const size_t size_before = service->extensions()->size();
255 const Extension* extension = service->extensions()->at(size_before);
/external/chromium/chrome/browser/ui/webui/
H A Dchrome_web_ui_factory.cc83 ExtensionService* service = contents->profile()->GetExtensionService(); local
84 if (service &&
85 service->ExtensionBindingsAllowed(url)) {
100 ExtensionService* service = profile ? profile->GetExtensionService() : NULL;
101 if (service && service->ExtensionBindingsAllowed(url))
/external/chromium/chrome/common/net/gaia/
H A Dgaia_auth_consumer.h40 virtual void OnIssueAuthTokenSuccess(const std::string& service, argument
42 virtual void OnIssueAuthTokenFailure(const std::string& service, argument
/external/chromium_org/apps/
H A Dapp_load_service.cc46 ExtensionService* service = extensions::ExtensionSystem::Get(profile_)-> local
48 DCHECK(service);
49 service->ReloadExtension(extension_id);
/external/chromium_org/base/prefs/
H A Dpref_change_registrar_unittest.cc50 MockPrefService* service() const { return service_.get(); } function in class:base::PrefChangeRegistrarTest
62 registrar.Init(service());
65 EXPECT_CALL(*service(),
67 EXPECT_CALL(*service(),
74 Mock::VerifyAndClearExpectations(service());
75 EXPECT_CALL(*service(),
77 EXPECT_CALL(*service(),
85 Mock::VerifyAndClearExpectations(service());
90 registrar.Init(service());
93 EXPECT_CALL(*service(),
[all...]
/external/chromium_org/chrome/browser/background/
H A Dbackground_contents_service_unittest.cc64 void SendOpenedNotification(BackgroundContentsService* service) { argument
68 service->BackgroundContentsOpened(&details);
110 BackgroundContentsService service(&profile, command_line_.get());
115 BackgroundContentsService service(&profile, command_line_.get());
117 EXPECT_FALSE(service.IsTracked(contents));
118 contents->SendOpenedNotification(&service);
119 EXPECT_TRUE(service.IsTracked(contents));
121 EXPECT_FALSE(service.IsTracked(contents));
126 BackgroundContentsService service(&profile, command_line_.get());
136 contents->SendOpenedNotification(&service);
[all...]
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_update_service.cc34 ExtensionService* service = local
36 if (service)
37 service->AddUpdateObserver(this);
63 ExtensionService* service = profile_->GetExtensionService(); local
64 if (service)
65 service->RemoveUpdateObserver(this);
/external/chromium_org/chrome/browser/extensions/api/declarative_content/
H A Dcontent_action.cc69 ExtensionService* service = local
71 const Extension* extension = service->GetInstalledExtension(extension_id);
/external/chromium_org/chrome/browser/extensions/api/feedback_private/
H A Dfeedback_private_api.cc70 FeedbackService* service = local
73 DCHECK(service);
74 SetResult(base::Value::CreateStringValue(service->GetUserEmail()));
79 FeedbackService* service = local
82 DCHECK(service);
83 service->GetSystemInformation(
151 FeedbackService* service = FeedbackPrivateAPI::GetFactoryInstance()-> local
153 DCHECK(service);
154 service->SendFeedback(profile(),
/external/chromium_org/chrome/browser/extensions/api/management/
H A Dmanagement_api_browsertest.cc109 ExtensionService* service = ExtensionSystem::Get(browser()->profile())-> local
133 EXPECT_TRUE(service->GetExtensionById(id, false) != NULL);
145 EXPECT_TRUE(service->GetExtensionById(id, false) == NULL);
198 ExtensionService* service = ExtensionSystem::Get(browser()->profile())-> variable
203 EXPECT_TRUE(service->GetExtensionById(kId, false) != NULL);
207 EXPECT_TRUE(service->GetExtensionById(kId, false) == NULL);
208 EXPECT_TRUE(service->GetExtensionById(kId, true) != NULL);
210 service->extension_prefs()->DidExtensionEscalatePermissions(kId));
H A Dmanagement_apitest.cc138 ExtensionService* service = extensions::ExtensionSystem::Get( local
140 EXPECT_TRUE(service->GetExtensionById(extension_ids_["enabled_extension"],
150 EXPECT_FALSE(service->GetExtensionById(extension_ids_["enabled_extension"],
164 ExtensionService* service = extensions::ExtensionSystem::Get( local
166 EXPECT_TRUE(service->GetExtensionById(extension_ids_["enabled_extension"],
182 ExtensionService* service = extensions::ExtensionSystem::Get( local
216 ASSERT_FALSE(service->GetExtensionById(app_id, true));
220 service->extension_prefs()->SetLaunchType(
247 ExtensionService* service = extensions::ExtensionSystem::Get( local
277 ASSERT_FALSE(service
[all...]
/external/chromium_org/chrome/browser/extensions/api/push_messaging/
H A Dpush_messaging_invalidation_handler.cc81 invalidation::InvalidationService* service,
83 : service_(service),
80 PushMessagingInvalidationHandler( invalidation::InvalidationService* service, PushMessagingInvalidationHandlerDelegate* delegate) argument
/external/chromium_org/chrome/browser/extensions/
H A Dapp_icon_loader_impl.cc21 ExtensionService* service = local
23 if (!service)
25 return service->GetInstalledExtension(id);
107 const ExtensionService* service = local
109 const bool enabled = service->IsExtensionEnabledForLauncher(id);
H A Ddefault_apps.cc137 VisitorInterface* service,
142 : extensions::ExternalProviderImpl(service, loader, profile, crx_location,
136 Provider(Profile* profile, VisitorInterface* service, extensions::ExternalLoader* loader, extensions::Manifest::Location crx_location, extensions::Manifest::Location download_location, int creation_flags) argument

Completed in 570 milliseconds

1234567891011>>