/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_service_browsertest.cc | 8 #include "chrome/browser/profiles/profile.h" 17 Profile* profile = browser()->profile(); local 18 PrefService* prefs = profile->GetPrefs(); 23 ManagedUserServiceFactory::GetForProfile(profile);
|
/external/chromium_org/chrome/browser/media/ |
chrome_midi_permission_context_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 14 ChromeMIDIPermissionContextFactory::GetForProfile(Profile* profile) { 16 GetInstance()->GetServiceForBrowserContext(profile, true)); 38 content::BrowserContext* profile) const { 39 return new ChromeMIDIPermissionContext(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_preferences_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 15 MediaGalleriesPreferencesFactory::GetForProfile(Profile* profile) { 17 GetInstance()->GetServiceForBrowserContext(profile, true)); 35 content::BrowserContext* profile) const { 36 return new chrome::MediaGalleriesPreferences(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/notifications/ |
desktop_notification_service_factory.cc | 10 #include "chrome/browser/profiles/profile.h" 18 Profile* profile) { 21 GetInstance()->GetServiceForBrowserContext(profile, true)); 41 content::BrowserContext* profile) const { 43 new DesktopNotificationService(static_cast<Profile*>(profile), NULL);
|
notification_ui_manager.h | 17 class Profile; 20 // notifications. There is one instance per profile. 29 virtual void Add(const Notification& notification, Profile* profile) = 0; 33 virtual bool Update(const Notification& notification, Profile* profile) = 0; 47 Profile* profile, 54 // Removes notifications matching |profile|. Returns true if any were removed. 55 virtual bool CancelAllByProfile(Profile* profile) = 0 [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
mock_password_store.cc | 11 content::BrowserContext* profile) {
|
/external/chromium_org/chrome/browser/policy/cloud/ |
user_cloud_policy_invalidator.cc | 17 Profile* profile, 23 profile_(profile), 25 DCHECK(profile); 27 // Register for notification that profile creation is complete. 30 content::Source<Profile>(profile)); 41 // Enable invalidations now that profile creation is complete.
|
/external/chromium_org/chrome/browser/predictors/ |
autocomplete_action_predictor_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 18 Profile* profile) { 20 GetInstance()->GetServiceForBrowserContext(profile, true)); 47 content::BrowserContext* profile) const { 48 return new AutocompleteActionPredictor(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_link_manager_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 18 Profile* profile) { 20 GetInstance()->GetServiceForBrowserContext(profile, true)); 37 content::BrowserContext* profile) const { 39 PrerenderManagerFactory::GetForProfile(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/ |
renderer_preferences_util.h | 8 class Profile; 18 Profile* profile);
|
/external/chromium_org/chrome/browser/search/ |
instant_service_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 16 InstantService* InstantServiceFactory::GetForProfile(Profile* profile) { 21 GetInstance()->GetServiceForBrowserContext(profile, true)); 48 content::BrowserContext* profile) const { 50 new InstantService(static_cast<Profile*>(profile)) : NULL;
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_fetcher_callbacks.h | 8 class Profile; 20 Profile* profile) = 0;
|
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service_factory.cc | 17 #include "chrome/browser/profiles/profile.h" 40 Profile* profile) { 45 GetInstance()->GetServiceForBrowserContext(profile, true)); 85 Profile* profile = static_cast<Profile*>(context); local 91 SigninManagerBase* signin = SigninManagerFactory::GetForProfile(profile); 95 AboutSigninInternalsFactory::GetForProfile(profile); 104 new ProfileSyncComponentsFactoryImpl(profile, [all...] |
/external/chromium_org/chrome/browser/tab_contents/ |
tab_util.cc | 8 #include "chrome/browser/profiles/profile.h" 32 SiteInstance* GetSiteInstanceForNewTab(Profile* profile, 36 ExtensionService* service = profile->GetExtensionService(); 38 profile, url) || 41 return SiteInstance::CreateForURL(profile, url);
|
/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/ |
accelerator_utils.h | 8 class Profile; 19 Profile* profile);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
encoding_menu_controller_delegate_mac.h | 11 class Profile; 18 static void BuildEncodingMenu(Profile *profile, NSMenu* encoding_menu);
|
/external/chromium_org/chrome/browser/ui/global_error/ |
global_error_service_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 13 GlobalErrorService* GlobalErrorServiceFactory::GetForProfile(Profile* profile) { 15 GetInstance()->GetServiceForBrowserContext(profile, true)); 33 content::BrowserContext* profile) const { 34 return new GlobalErrorService(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/ui/search_engines/ |
search_engine_tab_helper_delegate.h | 8 class Profile; 22 Profile* profile) = 0;
|
/external/chromium_org/chrome/browser/ui/webui/ |
downloads_ui_browsertest.cc | 8 #include "chrome/browser/profiles/profile.h" 19 browser()->profile()->GetPrefs()->
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
app_resource_cache_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 14 NTPResourceCache* AppResourceCacheFactory::GetForProfile(Profile* profile) { 16 GetInstance()->GetServiceForBrowserContext(profile, true)); 36 content::BrowserContext* profile) const { 37 return new NTPResourceCache(static_cast<Profile*>(profile));
|
ntp_resource_cache_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 14 NTPResourceCache* NTPResourceCacheFactory::GetForProfile(Profile* profile) { 16 GetInstance()->GetServiceForBrowserContext(profile, true)); 36 content::BrowserContext* profile) const { 37 return new NTPResourceCache(static_cast<Profile*>(profile));
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
ScriptProfile.h | 46 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile, double idleTime) 48 return adoptRef(new ScriptProfile(profile, idleTime)); 63 ScriptProfile(const v8::CpuProfile* profile, double idleTime) 64 : m_profile(profile)
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
profilesPanel.css | 32 #profile-views { 50 .profile-launcher-view-tree-item > .icon { 55 .profile-sidebar-tree-item .icon { 59 .profile-sidebar-tree-item.small .icon { 63 .profile-group-sidebar-tree-item .icon { 67 .profile-view { 77 .profile-view.visible { 81 .profile-view .data-grid { 86 .profile-view .data-grid th.average-column { 90 .profile-view .data-grid td.average-column [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/ |
base.h | 31 /** @file profile/base.h 33 * This file is a GNU profile extension to the Standard C++ Library. 42 #include <profile/impl/profiler.h> 48 * @brief GNU profile code, replaces standard behavior with profile behavior. 57 * @brief GNU profile code for public use. 61 // Import all the profile versions of components in namespace std.
|