/external/chromium_org/apps/app_shim/ |
extension_app_shim_handler_mac.cc | 21 #include "chrome/browser/profiles/profile.h" 38 void ProfileLoadedCallback(base::Callback<void(Profile*)> callback, 39 Profile* profile, 40 Profile::CreateStatus status) { 41 if (status == Profile::CREATE_STATUS_INITIALIZED) { 42 callback.Run(profile); 47 DCHECK_EQ(Profile::CREATE_STATUS_CREATED, status); 50 void SetAppHidden(Profile* profile, const std::string& app_id, bool hidden) 138 Profile* profile = profile_manager->GetProfileByPath(full_path); local 249 Profile* profile = shell_window->profile(); local 262 Profile* profile = shell_window->profile(); local 281 Profile* profile = shell_window->profile(); local 314 Profile* profile = delegate_->ProfileForPath(profile_path); local 379 Profile* profile = delegate_->ProfileForPath(profile_path); local 415 Profile* profile = delegate_->ProfileForPath(host->GetProfilePath()); local 439 Profile* profile = delegate_->ProfileForPath(host->GetProfilePath()); local 446 Profile* profile = delegate_->ProfileForPath(host->GetProfilePath()); local 467 Profile* profile = content::Source<Profile>(source).ptr(); local [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_disabled_infobar_delegate.h | 11 class Profile; 15 void ShowExtensionDisabledUI(ExtensionService* service, Profile* profile, 19 void ShowExtensionDisabledDialog(ExtensionService* service, Profile* profile,
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_url.h | 10 class Profile; 15 explicit CloudPrintURL(Profile* profile) : profile_(profile) {} 29 Profile* profile_;
|
/external/chromium/chrome/browser/ui/cocoa/ |
first_run_bubble_controller.h | 9 class Profile; 17 Profile* profile_; 23 profile:(Profile*)profile;
|
/external/chromium/chrome/browser/ui/webui/ |
active_downloads_ui.h | 17 class Profile; 23 static Browser* OpenPopup(Profile* profile); 24 static Browser* GetPopup(Profile* profile);
|
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service_factory.h | 12 class Profile; 17 static ProfileSyncService* GetForProfile(Profile* profile); 18 static bool HasProfileSyncService(Profile* profile);
|
/external/chromium_org/chrome/browser/sync/test/integration/performance/ |
bookmarks_sync_perf_test.cc | 27 // Adds |num_urls| new unique bookmarks to the bookmark bar for |profile|. 28 void AddURLs(int profile, int num_urls); 30 // Updates the URL for all bookmarks in the bookmark bar for |profile|. 31 void UpdateURLs(int profile); 33 // Removes all bookmarks in the bookmark bar for |profile|. 34 void RemoveURLs(int profile); 36 // Returns the number of bookmarks stored in the bookmark bar for |profile|. 37 int GetURLCount(int profile); 51 void BookmarksSyncPerfTest::AddURLs(int profile, int num_urls) { 54 profile, 0, NextIndexedURLTitle(), GURL(NextIndexedURL())) != NULL) [all...] |
extensions_sync_perf_test.cc | 31 // Adds |num_extensions| new unique extensions to |profile|. 32 void AddExtensions(int profile, int num_extensions); 34 // Updates the enabled/disabled state for all extensions in |profile|. 35 void UpdateExtensions(int profile); 37 // Uninstalls all currently installed extensions from |profile|. 38 void RemoveExtensions(int profile); 40 // Returns the number of currently installed extensions for |profile|. 41 int GetExtensionCount(int profile); 48 void ExtensionsSyncPerfTest::AddExtensions(int profile, int num_extensions) { 50 InstallExtension(GetProfile(profile), extension_number_++) [all...] |
/external/chromium_org/chrome/browser/ui/ |
browser_ui_prefs.h | 11 class Profile; 23 // given user profile. This is done only once per application name / per 24 // session / per user profile. 25 void RegisterAppPrefs(const std::string& app_name, Profile* profile);
|
/external/chromium_org/chrome/browser/ui/startup/ |
default_browser_prompt.h | 11 class Profile; 18 void ShowDefaultBrowserPrompt(Profile* profile, HostDesktopType desktop_type); 22 bool ShowFirstRunDefaultBrowserPrompt(Profile* profile);
|
/external/chromium_org/chrome/browser/ui/sync/ |
sync_promo_ui.cc | 7 #include "chrome/browser/profiles/profile.h" 10 bool SyncPromoUI::ShouldShowSyncPromo(Profile* profile) { 12 if (!signin::ShouldShowPromo(profile)) { 17 if (!profile->IsSyncAccessible())
|
/external/chromium/chrome/browser/profiles/ |
profile_manager.cc | 71 std::vector<Profile*> profiles(pm->GetLoadedProfiles()); 77 Profile* ProfileManager::GetDefaultProfile() { 121 // If the user has logged in, pick up the new profile. 125 // We should never be logged in with no profile dir. 138 Profile* ProfileManager::GetDefaultProfile(const FilePath& user_data_dir) { 143 Profile* profile; local 146 // For cros, return the OTR profile so we never accidentally keep 147 // user data in an unencrypted profile. But doing this makes 148 // many of the browser and ui tests fail. We do return the OTR profile 211 Profile* profile = GetProfileByPath(profile_dir); local [all...] |
/external/chromium/chrome/browser/themes/ |
theme_service_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 19 ThemeService* ThemeServiceFactory::GetForProfile(Profile* profile) { 21 GetInstance()->GetServiceForProfile(profile)); 25 const Extension* ThemeServiceFactory::GetThemeForProfile(Profile* profile) { 26 std::string id = GetForProfile(profile)->GetThemeID(); 30 return profile->GetExtensionService()->GetExtensionById(id, false); 46 Profile* profile) const [all...] |
theme_service_factory.h | 17 class Profile; 20 // Profiles. Listens for the Profile's destruction notification and cleans up 25 // |profile|. Note that even if a Profile doesn't have a theme installed, it 27 static ThemeService* GetForProfile(Profile* profile); 30 // |profile|. Returns NULL if the theme is no longer installed, if there is 32 static const Extension* GetThemeForProfile(Profile* profile); 43 virtual ProfileKeyedService* BuildServiceInstanceFor(Profile* profile) const [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/prerender/ |
ExternalPrerenderHandler.java | 9 import org.chromium.chrome.browser.profiles.Profile; 23 public long addPrerender(Profile profile, String url, String referrer, int width, int height) { 25 if (nativeAddPrerender(mNativeExternalPrerenderHandler, profile, webContentsPtr, 37 public static boolean hasPrerenderedUrl(Profile profile, String url, long webContentsPtr) { 38 return nativeHasPrerenderedUrl(profile, url, webContentsPtr); 43 long nativeExternalPrerenderHandlerAndroid, Profile profile, 46 Profile profile, String url, long webContentsPtr) [all...] |
/external/chromium_org/chrome/browser/geolocation/ |
chrome_geolocation_permission_context_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 22 explicit Service(Profile* profile) { 24 context_ = new ChromeGeolocationPermissionContextAndroid(profile); 26 context_ = new ChromeGeolocationPermissionContext(profile); 48 ChromeGeolocationPermissionContextFactory::GetForProfile(Profile* profile) { 50 GetInstance()->GetServiceForBrowserContext(profile, true))->context(); 72 content::BrowserContext* profile) const { 73 return new Service(static_cast<Profile*>(profile)) [all...] |
/external/chromium_org/chrome/browser/policy/cloud/ |
user_cloud_policy_invalidator.h | 13 class Profile; 20 // BrowserContextKeyedService to allow profile-based lifetime management. 25 // |profile| is profile associated with the invalidator. It is used to get 26 // a reference to the profile's invalidation service. Both the profile and 31 Profile* profile, 43 // The profile associated with the invalidator. 44 Profile* profile_ [all...] |
/external/chromium_org/chrome/browser/profiles/ |
gaia_info_update_service.h | 17 class Profile; 20 // This service kicks off a download of the user's name and profile picture. 21 // The results are saved in the profile info cache. 25 explicit GAIAInfoUpdateService(Profile* profile); 28 // Updates the GAIA info for the profile associated with this instance. 31 // Checks if downloading GAIA info for the given profile is allowed. 32 static bool ShouldUseGAIAProfileInfo(Profile* profile); 37 virtual Profile* GetBrowserProfile() OVERRIDE [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
manage_profile_overlay.html | 1 <div id="manage-profile-overlay" class="page" hidden> 4 <div id="manage-profile-overlay-manage" hidden> 6 <div id="manage-profile-content" class="content-area"> 7 <div id="manage-profile-icon-label" 10 <grid id="manage-profile-icon-grid"></grid> 11 <div id="manage-profile-name-input-container"> 13 <span id="manage-profile-name-label" for="manage-profile-name" 16 <input id="manage-profile-name" type="text" required> 19 <div id="manage-profile-error-bubble" hidden></div [all...] |
/external/chromium_org/chrome/browser/search_engines/ |
template_url_fetcher_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 15 Profile* profile) { 17 GetInstance()->GetServiceForBrowserContext(profile, true)); 26 void TemplateURLFetcherFactory::ShutdownForProfile(Profile* profile) { 28 factory->BrowserContextShutdown(profile); 29 factory->BrowserContextDestroyed(profile); 43 content::BrowserContext* profile) const { 44 return new TemplateURLFetcher(static_cast<Profile*>(profile)) [all...] |
/external/chromium_org/chrome/browser/signin/ |
profile_oauth2_token_service_factory.cc | 7 #include "chrome/browser/profiles/profile.h" 31 ProfileOAuth2TokenServiceFactory::GetForProfile(Profile* profile) { 33 GetInstance()->GetServiceForBrowserContext(profile, true)); 39 Profile* profile) { 41 GetForProfile(profile)); 53 Profile* profile = static_cast<Profile*>(context) local [all...] |
/external/chromium_org/components/autofill/core/browser/android/ |
auxiliary_profiles_android.h | 21 // a 'default' auxiliary profile. It depends on an 23 // that is re-organized into an Autofill profile. 33 // Returns autofill profile constructed from profile_loader_. 37 // Inserts contact's address data into profile. 38 void LoadAddress(AutofillProfile* profile); 39 // Inserts contact's name data into profile. 40 void LoadName(AutofillProfile* profile); 41 // Inserts contact's email address data into profile. 42 void LoadEmailAddress(AutofillProfile* profile); 43 // Inserts contact's phone number data into profile [all...] |
/external/chromium/chrome/browser/ |
background_contents_service_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 14 Profile* profile) { 16 GetInstance()->GetServiceForProfile(profile)); 33 Profile* profile) const { 34 return new BackgroundContentsService(profile,
|
background_mode_manager_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 14 Profile* profile) { 16 GetInstance()->GetServiceForProfile(profile)); 32 Profile* profile) const { 33 return new BackgroundModeManager(profile, CommandLine::ForCurrentProcess());
|
/external/chromium/chrome/browser/instant/ |
instant_confirm_dialog.cc | 10 #include "chrome/browser/profiles/profile.h" 23 Profile* profile) { 24 PrefService* prefs = profile->GetPrefs(); 28 PromoCounter* promo_counter = profile->GetInstantPromoCounter(); 33 InstantController::Enable(profile); 37 ShowInstantConfirmDialog(parent, profile);
|