| /external/chromium_org/chrome/browser/ui/webui/signin/ |
| login_ui_service_factory.h | 12 class Profile; 15 // Profiles. Listens for the Profile's destruction notification and cleans up 19 // Returns the instance of LoginUIService associated with this profile 20 // (creating one if none exists). Returns NULL if this profile cannot have a 21 // LoginUIService (for example, if |profile| is incognito). 22 static LoginUIService* GetForProfile(Profile* profile); 35 content::BrowserContext* profile) const OVERRIDE;
|
| /external/chromium_org/chrome/browser/undo/ |
| bookmark_undo_service_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 14 Profile* profile) { 16 GetInstance()->GetServiceForBrowserContext(profile, true)); 36 Profile* profile = static_cast<Profile*>(context); local 37 return new BookmarkUndoService(profile);
|
| /external/chromium_org/chromeos/test/data/network/policy/ |
| shill_policy_on_unconfigured_wifi1.json | 5 "Profile": "/profile/user1/shill",
|
| shill_policy_on_unmanaged_ethernet_eap.json | 4 "Profile": "/profile/user1/shill",
|
| shill_policy_on_unmanaged_wifi1.json | 5 "Profile": "/profile/user1/shill",
|
| shill_policy_on_unmanaged_wifi1_wo_uidata.json | 5 "Profile": "/profile/user1/shill",
|
| shill_unmanaged_wifi1.json | 5 "Profile": "/profile/user1/shill",
|
| /external/chromium_org/chrome/browser/profiles/ |
| profile_manager.h | 21 #include "chrome/browser/profiles/profile.h" 32 public Profile::Delegate { 34 typedef base::Callback<void(Profile*, Profile::CreateStatus)> CreateCallback; 44 // Physically remove deleted profile directories from disk. 48 // If the Profile is going to be used to open a new window then consider using 50 static Profile* GetLastUsedProfile(); 52 // Same as GetLastUsedProfile() but returns the incognito Profile if 53 // incognito mode is forced. This should be used if the last used Profile 55 static Profile* GetLastUsedProfileAllowedByPolicy() 229 scoped_ptr<Profile> profile; member in struct:ProfileManager::ProfileInfo [all...] |
| profile_android.cc | 8 #include "chrome/browser/profiles/profile.h" 19 ProfileAndroid* ProfileAndroid::FromProfile(Profile* profile) { 20 if (!profile) 24 profile->GetUserData(kProfileAndroidKey)); 26 profile_android = new ProfileAndroid(profile); 27 profile->SetUserData(kProfileAndroidKey, profile_android); 33 Profile* ProfileAndroid::FromProfileAndroid(jobject obj) { 51 Profile* profile = ProfileManager::GetLastUsedProfile() local [all...] |
| /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/ |
| AnswersImage.java | 10 import org.chromium.chrome.browser.profiles.Profile; 31 * @param profile Profile that the request is for. 38 Profile profile, String imageUrl, AnswersImageObserver observer) { 39 return nativeRequestAnswersImage(profile, imageUrl, observer); 44 * @param profile Profile the request was issued for. 47 public static void cancelAnswersImageRequest(Profile profile, int requestId) [all...] |
| /external/chromium_org/chrome/browser/policy/ |
| profile_policy_connector_factory.h | 17 class Profile; 40 // Returns the ProfilePolicyConnector associated with |profile|. This is only 41 // valid before |profile| is shut down. 42 static ProfilePolicyConnector* GetForProfile(Profile* profile); 44 // Creates a new ProfilePolicyConnector for |profile|, which must be managed 50 Profile* profile, 53 // Overrides the |connector| for the given |profile|; use only in tests. 56 void SetServiceForTesting(Profile* profile [all...] |
| profile_policy_connector_factory.cc | 10 #include "chrome/browser/profiles/profile.h" 37 Profile* profile) { 38 return GetInstance()->GetForProfileInternal(profile); 43 ProfilePolicyConnectorFactory::CreateForProfile(Profile* profile, 45 return GetInstance()->CreateForProfileInternal(profile, force_immediate_load); 49 Profile* profile, 51 ProfilePolicyConnector*& map_entry = connectors_[profile]; 125 Profile* profile = static_cast<Profile*>(context); local [all...] |
| /external/chromium_org/chrome/browser/signin/ |
| easy_unlock.h | 12 class Profile; 16 // Registers Easy Unlock profile preferences. 20 void LaunchEasyUnlockSetup(Profile* profile);
|
| /external/chromium_org/chrome/browser/sync/glue/ |
| theme_data_type_controller.h | 10 class Profile; 18 Profile* profile, 27 Profile* const profile_;
|
| /external/chromium_org/chrome/browser/extensions/ |
| extension_view_host_factory.cc | 10 #include "chrome/browser/profiles/profile.h" 28 // profile. 31 Profile* profile, 34 DCHECK(profile); 38 ExtensionSystem::Get(profile)->process_manager(); 54 Profile* profile, 58 DCHECK(profile->IsOffTheRecord()); 61 // If it's not split-mode the host is associated with the original profile [all...] |
| extension_install_ui.cc | 10 ExtensionInstallUI::ExtensionInstallUI(Profile* profile) 11 : profile_(profile),
|
| /external/chromium_org/chrome/browser/chromeos/app_mode/ |
| app_session_lifetime.h | 10 class Profile; 15 void InitAppSession(Profile* profile, const std::string& app_id);
|
| /external/chromium_org/chrome/browser/history/ |
| history_service_factory.h | 9 #include "chrome/browser/profiles/profile.h" 19 Profile* profile, Profile::ServiceAccessType sat); 22 Profile* profile, Profile::ServiceAccessType sat); 25 Profile* profile); 29 // In the testing profile, we often clear the history before making a ne [all...] |
| /external/chromium_org/chrome/browser/sync/ |
| profile_sync_service_mock.cc | 18 ProfileSyncServiceMock::ProfileSyncServiceMock(Profile* profile) 21 profile, 23 profile, 24 SigninManagerFactory::GetForProfile(profile))), 25 ProfileOAuth2TokenServiceFactory::GetForProfile(profile), 34 TestingProfile* profile = new TestingProfile(); local 35 profile->GetPrefs()->SetString(prefs::kGoogleServicesUsername, "foo"); 36 return profile; 41 content::BrowserContext* profile) { [all...] |
| /external/chromium_org/chrome/browser/ui/ash/multi_user/ |
| multi_user_util.h | 10 class Profile; 18 // Get the user id from a given profile. 19 std::string GetUserIDFromProfile(Profile* profile); 24 // Get a profile for a given user id. 25 Profile* GetProfileFromUserID(const std::string& user_id); 27 // Get a profile for a |window|. Returns NULL if window belongs to no profile. 28 Profile* GetProfileFromWindow(aura::Window* window); 30 // Check if the given profile is from the currently active user. Note that sinc [all...] |
| /external/chromium_org/chrome/browser/sync/test/integration/ |
| bookmarks_helper.h | 22 // Used to access the bookmark model within a particular sync profile. 25 // Used to access the bookmark bar within a particular sync profile. 28 // Used to access the "other bookmarks" node within a particular sync profile. 31 // Used to access the "Synced Bookmarks" node within a particular sync profile. 34 // Used to access the bookmarks within the verifier sync profile. 38 // profile |profile|. Returns a pointer to the node that was added. 40 int profile, 45 // profile |profile| at position |index|. Returns a pointer to the node tha [all...] |
| /external/chromium_org/chrome/browser/ui/app_list/ |
| app_list_controller_delegate.cc | 11 #include "chrome/browser/profiles/profile.h" 39 const extensions::Extension* GetExtension(Profile* profile, 42 extensions::ExtensionSystem::Get(profile)->extension_service(); 80 Profile* profile, 82 const extensions::Extension* extension = GetExtension(profile, app_id); 84 extensions::ExtensionSystem::Get(profile)->management_policy(); 94 Profile* profile, [all...] |
| /external/chromium_org/chrome/browser/accessibility/ |
| accessibility_events.cc | 11 #include "chrome/browser/profiles/profile.h" 21 Profile* profile = info->profile(); local 22 if (profile->ShouldSendAccessibilityEvents()) { 32 Profile* profile = info->profile(); local 33 if (profile->ShouldSendAccessibilityEvents()) { 43 Profile* profile = info->profile() local [all...] |
| /external/chromium_org/chrome/browser/chromeos/ownership/ |
| owner_settings_service_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 27 Profile* profile) { 29 GetInstance()->GetServiceForBrowserContext(profile, true)); 44 Profile* profile = UserManager::Get()->GetProfileByUser(user); 45 if (!profile) 47 OwnerSettingsService* service = GetForProfile(profile); 49 // It's safe to call ReloadPrivateKey() here, as profile is fully created 62 Profile* profile = static_cast<Profile*>(browser_context) local [all...] |
| /external/fio/ |
| profile.c | 2 #include "profile.h" 9 struct profile_ops *find_profile(const char *profile) 16 if (!strcmp(profile, ops->name)) 25 int load_profile(const char *profile) 29 dprint(FD_PROFILE, "loading profile '%s'\n", profile); 31 ops = find_profile(profile); 34 log_err("fio: profile %s prep failed\n", profile); 41 log_err("fio: profile '%s' not found\n", profile) [all...] |