HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 151 - 175 of 7858) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/notifications/
desktop_notification_service_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up
22 // for |profile|.
23 static DesktopNotificationService* GetForProfile(Profile* profile);
35 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/prerender/
prerender_manager_factory.h 12 class Profile;
19 // Listens for the Profile's destruction notification and cleans up the
23 // Returns the PrerenderManager for |profile|.
24 static PrerenderManager* GetForProfile(Profile* profile);
36 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_proxy_service_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up
20 // Returns the CloudPrintProxyService for |profile|, creating if not yet
22 static CloudPrintProxyService* GetForProfile(Profile* profile);
34 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/search_engines/
template_url_fetcher_factory.h 11 class Profile;
18 static TemplateURLFetcher* GetForProfile(Profile* profile);
25 static void ShutdownForProfile(Profile* profile);
35 content::BrowserContext* profile) const OVERRIDE;
template_url_fetcher_callbacks.h 8 class Profile;
20 Profile* profile) = 0;
  /external/chromium_org/chrome/browser/signin/
chrome_signin_manager_delegate.cc 16 ChromeSigninManagerDelegate::ChromeSigninManagerDelegate(Profile* profile)
17 : profile_(profile) {
24 bool ChromeSigninManagerDelegate::ProfileAllowsSigninCookies(Profile* profile) {
26 CookieSettings::Factory::GetForProfile(profile).get();
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_factory.cc 26 Profile* profile) {
28 GetInstance()->GetServiceForBrowserContext(profile, true).get());
38 content::BrowserContext* profile) const {
40 new ThumbnailServiceImpl(static_cast<Profile*>(profile)));
  /external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_service_factory.h 13 class Profile;
16 // Listens for the Profile's destruction notification and cleans up the
20 // Returns the PinnedTabService that tracks pinning changes for |profile|.
21 static PinnedTabService* GetForProfile(Profile* profile);
33 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/predictors/
predictors_ui.cc 7 #include "chrome/browser/profiles/profile.h"
28 Profile* profile = Profile::FromWebUI(web_ui); local
29 web_ui->AddMessageHandler(new PredictorsHandler(profile));
30 content::WebUIDataSource::Add(profile, CreatePredictorsUIHTMLSource());
  /external/chromium_org/chrome/browser/ui/webui/signin/
login_ui_service_factory.cc 22 LoginUIService* LoginUIServiceFactory::GetForProfile(Profile* profile) {
24 GetInstance()->GetServiceForBrowserContext(profile, true));
33 content::BrowserContext* profile) const {
34 return new LoginUIService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/ui/webui/sync_file_system_internals/
extension_statuses_handler.h 11 class Profile;
21 explicit ExtensionStatusesHandler(Profile* profile);
26 static void GetExtensionStatusesAsDictionary(Profile* profile,
35 Profile* profile_;
  /external/chromium_org/chrome/browser/profiles/
profile_destroyer.cc 10 #include "chrome/browser/profiles/profile.h"
25 void ProfileDestroyer::DestroyProfileWhenAppropriate(Profile* const profile) {
26 DCHECK(profile);
27 profile->MaybeSendDestroyedNotification();
33 if (profile->AsTestingProfile() == NULL) {
34 GetHostsForProfile(profile, &hosts);
35 if (!profile->IsOffTheRecord() && profile->HasOffTheRecordProfile())
36 GetHostsForProfile(profile->GetOffTheRecordProfile(), &hosts)
    [all...]
profile_destroyer.h 15 class Profile;
20 // We use this class to destroy the off the record profile so that we can make
25 static void DestroyProfileWhenAppropriate(Profile* const profile);
26 static void DestroyOffTheRecordProfileNow(Profile* const profile);
32 Profile* const profile,
43 // Fetch the list of render process hosts that still refer to the profile.
46 Profile* const profile
    [all...]
  /external/chromium/chrome/browser/first_run/
first_run_dialog.h 9 class Profile;
15 void ShowFirstRunDialog(Profile* profile,
  /external/chromium/chrome/browser/
renderer_preferences_util.h 11 class Profile;
16 void UpdateFromSystemSettings(RendererPreferences* prefs, Profile* profile);
  /external/chromium/chrome/browser/ui/options/
show_options_url.h 10 class Profile;
16 void ShowOptionsURL(Profile* profile, const GURL& url);
  /external/chromium_org/chrome/browser/autofill/
autocheckout_whitelist_manager_factory.cc 10 #include "chrome/browser/profiles/profile.h"
20 explicit WhitelistManagerServiceImpl(Profile* profile);
32 ::WhitelistManagerServiceImpl(Profile* profile) {
34 whitelist_manager_->Init(profile->GetRequestContext());
51 WhitelistManagerFactory::GetForProfile(Profile* profile) {
54 GetInstance()->GetServiceForBrowserContext(profile, true));
76 content::BrowserContext* profile) const
    [all...]
personal_data_manager_factory.cc 11 #include "chrome/browser/profiles/profile.h"
21 explicit PersonalDataManagerServiceImpl(Profile* profile);
33 Profile* profile) {
36 personal_data_manager_->Init(profile);
53 Profile* profile) {
56 GetInstance()->GetServiceForBrowserContext(profile, true));
81 content::BrowserContext* profile) const
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model_factory.cc 12 #include "chrome/browser/profiles/profile.h"
20 BookmarkModel* BookmarkModelFactory::GetForProfile(Profile* profile) {
22 GetInstance()->GetServiceForBrowserContext(profile, true));
25 BookmarkModel* BookmarkModelFactory::GetForProfileIfExists(Profile* profile) {
27 GetInstance()->GetServiceForBrowserContext(profile, false));
45 Profile* profile = static_cast<Profile*>(context) local
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_appcache_helper.cc 10 Profile* profile)
11 : BrowsingDataAppCacheHelper(profile) {
  /external/chromium_org/chrome/browser/devtools/adb/
android_rsa.h 14 class Profile;
16 crypto::RSAPrivateKey* AndroidRSAPrivateKey(Profile* profile);
  /external/chromium_org/chrome/browser/extensions/api/terminal/
terminal_extension_helper.h 12 class Profile;
18 static GURL GetCroshExtensionURL(Profile* profile);
  /external/chromium_org/chrome/browser/first_run/
first_run_dialog.h 8 class Profile;
14 bool ShowFirstRunDialog(Profile* profile);
  /external/chromium_org/chrome/browser/history/
web_history_service_factory.cc 19 bool IsHistorySyncEnabled(Profile* profile) {
23 ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile);
40 Profile* profile) {
41 if (IsHistorySyncEnabled(profile)) {
43 GetInstance()->GetServiceForBrowserContext(profile, true));
50 Profile* profile = static_cast<Profile*>(context) local
    [all...]
  /external/chromium_org/chrome/browser/
renderer_preferences_util.h 8 class Profile;
18 Profile* profile);

Completed in 587 milliseconds

1 2 3 4 5 67 8 91011>>