/external/chromium_org/chrome/browser/ui/ash/ |
app_sync_ui_state_factory.cc | 7 #include "chrome/browser/profiles/profile.h" 13 AppSyncUIState* AppSyncUIStateFactory::GetForProfile(Profile* profile) { 14 if (!AppSyncUIState::ShouldObserveAppSyncForProfile(profile)) 18 GetInstance()->GetServiceForBrowserContext(profile, true)); 38 Profile* profile = static_cast<Profile*>(context); local 39 DCHECK(AppSyncUIState::ShouldObserveAppSyncForProfile(profile)); 40 return new AppSyncUIState(profile); [all...] |
/external/chromium_org/chrome/browser/ui/sync/ |
sync_promo_ui.h | 8 class Profile; 14 // |profile| is the profile for which the promo would be displayed. 15 static bool ShouldShowSyncPromo(Profile* profile);
|
/external/chromium_org/chrome/browser/sessions/ |
session_service_factory.h | 9 #include "chrome/browser/profiles/profile.h" 14 // Profiles. Listens for the Profile's destruction notification and cleans up 18 // Returns the session service for |profile|. This may return NULL. If this 19 // profile supports a session service (it isn't incognito), and the session 22 // |profile|. 24 // This returns NULL if the profile is incognito. Callers should always check 26 static SessionService* GetForProfile(Profile* profile); 28 // Returns the session service for |profile|, but do not create it if it 29 // doesn't exist. This returns NULL if the profile is incognito or if sessio [all...] |
tab_restore_service_factory.h | 12 class Profile; 15 // Profiles. Listens for the Profile's destruction notification and cleans up 19 static TabRestoreService* GetForProfile(Profile* profile); 23 static TabRestoreService* GetForProfileIfExisting(Profile* profile); 25 static void ResetForProfile(Profile* profile); 37 content::BrowserContext* profile) const OVERRIDE;
|
session_service_factory.cc | 7 #include "chrome/browser/profiles/profile.h" 13 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { 19 GetInstance()->GetServiceForBrowserContext(profile, true)); 25 Profile* profile) { 31 GetInstance()->GetServiceForBrowserContext(profile, false)); 37 Profile* profile) { 38 SessionService* service = GetForProfile(profile); [all...] |
/external/chromium_org/chrome/browser/profiles/ |
profile_browsertest.cc | 5 #include "chrome/browser/profiles/profile.h" 27 class MockProfileDelegate : public Profile::Delegate { 29 MOCK_METHOD1(OnPrefsLoaded, void(Profile*)); 30 MOCK_METHOD3(OnProfileCreated, void(Profile*, bool, bool)); 44 void CheckChromeVersion(Profile *profile, bool is_new) { 53 ChromeVersionService::GetVersion(profile->GetPrefs()); 63 // creating a new profile synchronously. 74 scoped_ptr<Profile> profile(Profile::CreateProfile [all...] |
profile_manager.h | 21 #include "chrome/browser/profiles/profile.h" 33 public Profile::Delegate { 35 typedef base::Callback<void(Profile*, Profile::CreateStatus)> CreateCallback; 45 // Physically remove deleted profile directories from disk. 51 // the Profile to get the browser context instead and by moving it into ash, 56 // Get the profile for the user which created the current session. 57 // Note that in case of a guest account this will return a 'suitable' profile. 58 static Profile* GetPrimaryUserProfile(); 60 // Get the profile for the currently active user 271 scoped_ptr<Profile> profile; member in struct:ProfileManager::ProfileInfo [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/ |
OmniboxPrerender.java | 8 import org.chromium.chrome.browser.profiles.Profile; 33 * @param profile profile instance corresponding to the active profile. 35 public void clear(Profile profile) { 36 nativeClear(mNativeOmniboxPrerender, profile); 40 * Initializes the underlying action predictor for a given profile instance. This should be 44 * @param profile profile instance corresponding to active profile [all...] |
/external/chromium_org/chrome/browser/chromeos/profiles/ |
profile_helper.h | 18 class Profile; 23 // active user profile. 28 // 1. Get "signin profile" which is a special type of profile that is only used 30 // 2. Get profile dir of an active user, used by ProfileManager: 32 // 3. Get mapping from user_id_hash to Profile instance/profile path etc. 40 // Returns Profile instance that corresponds to |user_id_hash|. 41 static Profile* GetProfileByUserIdHash(const std::string& user_id_hash); 43 // Returns profile dir that corresponds to a --login-profile cmd line switch [all...] |
/external/chromium_org/chrome/browser/prefs/ |
browser_prefs.h | 10 class Profile; 22 // Profile. 27 // Profile. 31 // Migrates prefs from |local_state| to |profile|'s pref store. 32 void MigrateBrowserPrefs(Profile* profile, PrefService* local_state); 34 // Migrates prefs in |profile|'s pref store. 35 void MigrateUserPrefs(Profile* profile);
|
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_bar_state_factory.h | 13 class Profile; 18 static FindBarState* GetForProfile(Profile* profile); 20 // Retrieves the last prepopulate text for a given Profile. If the profile is 22 // prepopulate text from the normal profile. 23 static base::string16 GetLastPrepopulateText(Profile* profile); 35 content::BrowserContext* profile) const OVERRIDE;
|
/external/chromium_org/chrome/browser/signin/ |
profile_oauth2_token_service_factory.h | 12 class Profile; 21 // Profiles. Listens for the Profile's destruction notification and cleans up 27 // profile (creating one if none exists). Returns NULL if this profile 28 // cannot have a ProfileOAuth2TokenService (for example, if |profile| is 30 static ProfileOAuth2TokenService* GetForProfile(Profile* profile); 33 // associated with this profile (creating one if none exists). Returns NULL 34 // if this profile cannot have a ProfileOAuth2TokenService (for example, 35 // if |profile| is incognito) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_app_helper.h | 14 class Profile; 28 bool AppStatesMatch(Profile* profile1, Profile* profile2); 30 // Gets the page ordinal value for the applications with |name| in |profile|. 31 syncer::StringOrdinal GetPageOrdinalForApp(Profile* profile, 35 // |profile|. 36 void SetPageOrdinalForApp(Profile* profile, 41 // |profile| [all...] |
extensions_helper.cc | 12 #include "chrome/browser/profiles/profile.h" 31 LOG(ERROR) << "Profile " << i << " doesn't have the same extensions as" 32 " the verifier profile."; 43 LOG(ERROR) << "Profile " << i << " doesnt have the same extensions as" 44 " profile 0."; 52 std::string InstallExtension(Profile* profile, int index) { 54 profile, 65 void UninstallExtension(Profile* profile, int index) [all...] |
/external/chromium/chrome/browser/autofill/ |
autofill_common_test.cc | 12 #include "chrome/browser/profiles/profile.h" 29 FormGroup* profile, AutofillFieldType type, const char* value) { 31 profile->SetInfo(type, ASCIIToUTF16(value)); 34 void SetProfileInfo(AutofillProfile* profile, 40 check_and_set(profile, NAME_FIRST, first_name); 41 check_and_set(profile, NAME_MIDDLE, middle_name); 42 check_and_set(profile, NAME_LAST, last_name); 43 check_and_set(profile, EMAIL_ADDRESS, email); 44 check_and_set(profile, COMPANY_NAME, company); 45 check_and_set(profile, ADDRESS_HOME_LINE1, address1) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_view_host_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 28 // profile. 31 Profile* profile, 34 DCHECK(profile); 38 ExtensionSystem::Get(profile)->process_manager(); 51 bool IsIncognitoEnabled(Profile* profile, const Extension* extension) { 53 ExtensionSystem::Get(profile)->extension_service(); 61 Profile* profile [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
CamcorderProfileTest.java | 43 private void checkProfile(CamcorderProfile profile, List<Size> videoSizes) { 44 Log.v(TAG, String.format("profile: duration=%d, quality=%d, " + 48 profile.duration, 49 profile.quality, 50 profile.fileFormat, 51 profile.videoCodec, 52 profile.videoBitRate, 53 profile.videoFrameRate, 54 profile.videoFrameWidth, 55 profile.videoFrameHeight 160 CamcorderProfile profile = getWithOptionalId(quality, cameraId); local [all...] |
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list_syncable_service_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 19 Profile* profile) { 21 GetInstance()->GetServiceForBrowserContext(profile, true)); 42 Profile* profile = static_cast<Profile*>(browser_context); local 44 extensions::ExtensionSystem::Get(profile)->extension_service(); 45 return new AppListSyncableService(profile, extension_service); 54 // In guest session, off the record profile should be used instead of th 58 Profile* profile = static_cast<Profile*>(context); local [all...] |
/external/e2fsprogs/e2fsck/ |
prof_err.c | 9 "Profile version 0.0", 11 "Profile section not found", 12 "Profile relation not found", 14 "A profile section header has a non-zero value", 15 "Bad linked list in profile structures", 16 "Bad group level in profile strctures", 17 "Bad parent pointer in profile strctures", 18 "Bad magic value in profile iterator", 20 "Invalid argument passed to profile library", 21 "Attempt to modify read-only profile", [all...] |
prof_err.et | 3 error_code PROF_VERSION, "Profile version 0.0" 9 error_code PROF_NO_SECTION, "Profile section not found" 10 error_code PROF_NO_RELATION, "Profile relation not found" 14 "A profile section header has a non-zero value" 15 error_code PROF_BAD_LINK_LIST, "Bad linked list in profile structures" 16 error_code PROF_BAD_GROUP_LVL, "Bad group level in profile strctures" 18 "Bad parent pointer in profile strctures" 19 error_code PROF_MAGIC_ITERATOR, "Bad magic value in profile iterator" 21 error_code PROF_EINVAL, "Invalid argument passed to profile library" 22 error_code PROF_READ_ONLY, "Attempt to modify read-only profile" [all...] |
/external/chromium_org/chrome/browser/chromeos/contacts/ |
contact_manager_stub.h | 18 explicit ContactManagerStub(Profile* profile); 29 virtual void AddObserver(ContactManagerObserver* observer, Profile* profile) 32 Profile* profile) OVERRIDE; 33 virtual scoped_ptr<ContactPointers> GetAllContacts(Profile* profile) OVERRIDE; 34 virtual const Contact* GetContactById(Profile* profile, [all...] |
contact_manager.h | 21 class Profile; 41 // Adds or removes an observer for changes to |profile|'s contacts. 43 Profile* profile) = 0; 45 Profile* profile) = 0; 47 // Returns pointers to all currently-loaded contacts for |profile|. The 50 virtual scoped_ptr<ContactPointers> GetAllContacts(Profile* profile) = 0; 54 virtual const Contact* GetContactById(Profile* profile [all...] |
/external/chromium_org/chrome/browser/favicon/ |
favicon_service_factory.cc | 17 Profile* profile, Profile::ServiceAccessType sat) { 18 if (!profile->IsOffTheRecord()) { 20 GetInstance()->GetServiceForBrowserContext(profile, true)); 21 } else if (sat == Profile::EXPLICIT_ACCESS) { 22 // Profile must be OffTheRecord in this case. 25 profile->GetOriginalProfile(), true)); 28 // Profile is OffTheRecord without access. 29 NOTREACHED() << "This profile is OffTheRecord" [all...] |
/external/chromium_org/apps/ |
app_keep_alive_service.h | 21 virtual void OnAppStart(Profile* profile, const std::string& app_id) OVERRIDE; 22 virtual void OnAppStop(Profile* profile, const std::string& app_id) OVERRIDE; 23 virtual void OnAppActivated(Profile* profile, 25 virtual void OnAppDeactivated(Profile* profile,
|
/external/chromium_org/chrome/browser/chromeos/login/ |
auth_sync_observer_factory.cc | 8 #include "chrome/browser/profiles/profile.h" 26 Profile* profile) { 28 GetInstance()->GetServiceForBrowserContext(profile, true)); 40 Profile* profile = static_cast<Profile*>(context); local 41 return new AuthSyncObserver(profile);
|