/external/chromium_org/chrome/browser/sync/test/integration/ |
apps_helper.cc | 9 #include "chrome/browser/profiles/profile.h" 35 LOG(ERROR) << "Profile " << i << " doesn't have the same apps as the" 36 " verifier profile."; 43 std::string InstallApp(Profile* profile, int index) { 45 profile, 50 std::string InstallPlatformApp(Profile* profile, int index) { 52 profile, 63 void UninstallApp(Profile* profile, int index) [all...] |
apps_helper.h | 13 class Profile; 17 // Returns true iff the profile with index |index| has the same apps (hosted, 25 // Installs the app for the given index to |profile|, and returns the extension 27 std::string InstallApp(Profile* profile, int index); 29 // Installs the platform app for the given index to |profile|, and returns the 32 std::string InstallPlatformApp(Profile* profile, int index); 38 // Uninstalls the app for the given index from |profile|. Assumes that it was 40 void UninstallApp(Profile* profile, int index) [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/ |
OmniboxPrerender.java | 7 import org.chromium.chrome.browser.profiles.Profile; 32 * @param profile profile instance corresponding to the active profile. 34 public void clear(Profile profile) { 35 nativeClear(mNativeOmniboxPrerender, profile); 39 * Initializes the underlying action predictor for a given profile instance. This should be 43 * @param profile profile instance corresponding to active profile [all...] |
/external/chromium_org/chrome/browser/policy/cloud/ |
user_cloud_policy_manager_factory.h | 14 class Profile; 21 // instances that initialize per-profile cloud policy settings on the desktop 26 // Therefore, lifetime of instances is managed by Profile, Profile startup code 39 // Returns the UserCloudPolicyManager instance associated with |profile|. 40 static UserCloudPolicyManager* GetForProfile(Profile* profile); 42 // Creates an instance for |profile|. Note that the caller is responsible for 49 Profile* profile, [all...] |
user_cloud_policy_manager_factory.cc | 11 #include "chrome/browser/profiles/profile.h" 24 Profile* profile) { 25 return GetInstance()->GetManagerForProfile(profile); 30 UserCloudPolicyManagerFactory::CreateForProfile(Profile* profile, 32 return GetInstance()->CreateManagerForProfile(profile, force_immediate_load); 43 Profile* profile) { 44 // Get the manager for the original profile, since the PolicyService i 69 Profile* profile = static_cast<Profile*>(context); local [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_change.cc | 21 Type type, const std::string& key, const AutofillProfile* profile) 23 profile_(profile) { 24 DCHECK(type == ADD ? (profile && profile->guid() == key) : true); 25 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true); 26 DCHECK(type == REMOVE ? !profile : true); 36 (type() != REMOVE) ? *profile() == *change.profile() : true;
|
/external/chromium_org/device/bluetooth/ |
bluetooth_profile.cc | 49 chromeos::BluetoothProfileChromeOS* profile = NULL; local 50 profile = new chromeos::BluetoothProfileChromeOS(); 51 profile->Init(uuid, options, callback); 53 BluetoothProfile* profile = NULL; 56 profile = new BluetoothProfileMac(uuid, options.name); 57 callback.Run(profile); 59 BluetoothProfile* profile = NULL; 60 profile = new BluetoothProfileWin(uuid, options.name); 61 callback.Run(profile);
|
/external/chromium_org/chrome/browser/extensions/ |
extension_warning_badge_service_unittest.cc | 9 #include "chrome/browser/profiles/profile.h" 21 explicit TestExtensionWarningSet(Profile* profile) 22 : ExtensionWarningService(profile) { 35 TestExtensionWarningBadgeService(Profile* profile, 37 : ExtensionWarningBadgeService(profile), 50 bool HasBadge(Profile* profile) { 52 GlobalErrorServiceFactory::GetForProfile(profile); 69 TestingProfile profile; local [all...] |
/external/chromium_org/chrome/browser/history/ |
history_service_factory.cc | 17 Profile* profile, Profile::ServiceAccessType sat) { 19 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) && 20 sat != Profile::EXPLICIT_ACCESS) 24 GetInstance()->GetServiceForBrowserContext(profile, true)); 30 Profile* profile, Profile::ServiceAccessType sat) { 32 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) & 70 Profile* profile = static_cast<Profile*>(context); local [all...] |
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/chrome/browser/ |
background_contents_service_unittest.cc | 32 const DictionaryValue* GetPrefs(Profile* profile) { 33 return profile->GetPrefs()->GetDictionary( 37 void ClearPrefs(Profile* profile) { 38 profile->GetPrefs()->ClearPref(prefs::kRegisteredBackgroundContents); 42 std::string GetPrefURLForApp(Profile* profile, const string16& appid) { 43 const DictionaryValue* pref = GetPrefs(profile); 57 explicit MockBackgroundContents(Profile* profile 111 TestingProfile profile; local 116 TestingProfile profile; local 127 TestingProfile profile; local 153 TestingProfile profile; local 172 TestingProfile profile; local 202 TestingProfile profile; local [all...] |
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_view_unittest.cc | 15 profile()->CreateBookmarkModel(true); 16 profile()->BlockUntilBookmarkModelLoaded(); 18 profile()->GetBookmarkModel()->AddURL( 19 profile()->GetBookmarkModel()->GetBookmarkBarNode(), 24 BookmarkBarView bookmark_bar(profile(), browser()); 36 bookmark_bar.SetProfile(profile());
|
/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_service_factory.cc | 10 #include "chrome/browser/profiles/profile.h" 14 ManagedUserService* ManagedUserServiceFactory::GetForProfile(Profile* profile) { 16 GetInstance()->GetServiceForBrowserContext(profile, true)); 26 Profile* profile) { 27 return new ManagedUserService(profile); 45 content::BrowserContext* profile) const { 46 return BuildInstanceFor(static_cast<Profile*>(profile)); [all...] |
/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/views/app_list/ |
app_list_controller_win_browsertest.cc | 5 #include "chrome/browser/profiles/profile.h" 23 EXPECT_EQ(1U, chrome::GetBrowserCount(browser()->profile(), desktop)); 25 browser()->profile()->GetOffTheRecordProfile(), desktop)); 27 controller->CreateNewWindow(browser()->profile(), false); 28 EXPECT_EQ(2U, chrome::GetBrowserCount(browser()->profile(), desktop)); 30 controller->CreateNewWindow(browser()->profile(), true); 32 browser()->profile()->GetOffTheRecordProfile(), desktop));
|
/external/e2fsprogs/e2fsck/ |
profile_helpers.h | 2 * profile_helpers.h -- Function prototypes for profile helper functions 13 (profile_t profile, const char *const *names, char ***ret_values); 19 (profile_t profile, const char **names, char ***ret_names); 22 (profile_t profile, const char **names, char ***ret_names);
|
/external/chromium_org/chrome/browser/background/ |
background_contents_service_unittest.cc | 34 const DictionaryValue* GetPrefs(Profile* profile) { 35 return profile->GetPrefs()->GetDictionary( 40 std::string GetPrefURLForApp(Profile* profile, const string16& appid) { 41 const DictionaryValue* pref = GetPrefs(profile); 55 explicit MockBackgroundContents(Profile* profile) 57 profile_(profile) { 59 MockBackgroundContents(Profile* profile, const std::string& id 109 TestingProfile profile; local 114 TestingProfile profile; local 125 TestingProfile profile; local 152 TestingProfile profile; local 173 TestingProfile profile; local 205 TestingProfile profile; local [all...] |
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_view_unittest.cc | 9 #include "chrome/browser/profiles/profile.h" 26 profile()->CreateBookmarkModel(true); 27 ui_test_utils::WaitForBookmarkModelToLoad(profile()); 31 browser()->profile()->GetPrefs()->SetBoolean( 44 TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile(); variable 48 profile, &BookmarkBarViewInstantExtendedTest::CreateTemplateURLService); 49 return profile; 54 content::BrowserContext* profile) { 55 return new TemplateURLService(static_cast<Profile*>(profile)); [all...] |
/external/chromium/chrome/browser/chromeos/frame/ |
dom_browser.h | 12 class Profile; 22 explicit DOMBrowser(Profile* profile); 27 static DOMBrowser* CreateForDOM(Profile* profile);
|
/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/instant/ |
instant_confirm_dialog.h | 12 class Profile; 23 Profile* profile); 29 Profile* profile);
|
/external/chromium/chrome/browser/profiles/ |
profile_keyed_service_factory.h | 10 class Profile; 14 // Base class for Factories that take a Profile object and return some service 24 typedef ProfileKeyedService* (*FactoryFunction)(Profile* profile); 27 // Associate an already-created |service| with |profile| for this factory. 31 void ForceAssociationBetween(Profile* profile, ProfileKeyedService* service) { 32 Associate(profile, service); 54 // Common implementation that maps |profile| to some service object. Deals 57 ProfileKeyedService* GetServiceForProfile(Profile* profile) [all...] |
/external/chromium/chrome/browser/ui/options/ |
show_options_url.cc | 7 #include "chrome/browser/profiles/profile.h" 13 void ShowOptionsURL(Profile* profile, const GURL& url) { 16 Browser* browser = Browser::Create(profile);
|
/external/chromium_org/chrome/browser/browsing_data/ |
mock_browsing_data_appcache_helper.cc | 10 Profile* profile) 11 : BrowsingDataAppCacheHelper(profile) {
|
/external/chromium_org/chrome/browser/ui/ |
browser_finder.h | 12 class Profile; 22 // Retrieve the last active tabbed browser with a profile matching |profile|. 24 // original profile, eg profile->GetOriginalProfile() == 25 // browser->profile()->GetOriginalProfile(). This has the effect of matching 29 Browser* FindTabbedBrowser(Profile* profile, 33 // Returns the first tabbed browser matching |profile|. If there is no tabbed 36 Browser* FindOrCreateTabbedBrowser(Profile* profile, HostDesktopType type) [all...] |