HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 76 - 100 of 3660) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/file_manager/
open_util.h 11 class Profile;
23 void OpenRemovableDrive(Profile* profile, const base::FilePath& file_path);
30 void OpenItem(Profile* profile, const base::FilePath& file_path);
34 void ShowItemInFolder(Profile* profile, const base::FilePath& file_path);
path_util.h 10 class Profile;
19 // Gets the absolute path for the 'Downloads' folder for the |profile|.
20 base::FilePath GetDownloadsFolderForProfile(Profile* profile);
24 // The |profile| argument is used for determining the location of the
36 // /home/chronos/u-<hash>/Downloads when multi-profile is enabled.
39 // the primary profile of the current session. The two paths always meant the
41 // a multi-profile session, the "user" path cannot be used to mean "its own"
46 // It turned out even if multi-profile is disabled, u-<hash> style profile
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/session/
stub_login_session_manager_delegate.cc 8 #include "chrome/browser/profiles/profile.h"
14 Profile* profile,
16 : RestoreAfterCrashSessionManagerDelegate(profile, login_user_id) {
26 profile()->GetPrefs()->SetString(prefs::kGoogleServicesUsername,
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.h 36 // Used to access the web data service within a particular sync profile.
40 // Used to access the personal data manager within a particular sync profile.
44 // Adds the form fields in |keys| to the WebDataService of sync profile
45 // |profile|.
46 void AddKeys(int profile, const std::set<autofill::AutofillKey>& keys);
48 // Removes the form field in |key| from the WebDataService of sync profile
49 // |profile|.
50 void RemoveKey(int profile, const autofill::AutofillKey& key);
52 // Removes all of the keys from the WebDataService of sync profile |profile|
    [all...]
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 "Managed Bookmarks" node for the given profile.
37 // Used to access the bookmarks within the verifier sync profile.
41 // profile |profile|. Returns a pointer to the node that was added.
43 int profile,
48 // profile |profile| at position |index|. Returns a pointer to the node tha
    [all...]
  /external/chromium_org/chrome/browser/ui/
scoped_tabbed_browser_displayer.cc 14 Profile* profile,
16 browser_ = FindTabbedBrowser(profile, false, type);
18 browser_ = new Browser(Browser::CreateParams(profile, type));
browser_mac.cc 7 #include "chrome/browser/profiles/profile.h"
14 void OpenAboutWindow(Profile* profile) {
16 new Browser(Browser::CreateParams(profile,
22 void OpenHistoryWindow(Profile* profile) {
24 new Browser(Browser::CreateParams(profile,
30 void OpenDownloadsWindow(Profile* profile) {
32 new Browser(Browser::CreateParams(profile,
    [all...]
browser_finder.h 12 class Profile;
25 // Retrieve the last active tabbed browser with a profile matching |profile|.
27 // original profile, eg profile->GetOriginalProfile() ==
28 // browser->profile()->GetOriginalProfile(). This has the effect of matching
32 Browser* FindTabbedBrowser(Profile* profile,
38 Browser* FindAnyBrowser(Profile* profile,
    [all...]
browser_finder.cc 7 #include "chrome/browser/profiles/profile.h"
30 // . If it contains kMatchOriginalProfile then the original profile of the
31 // browser must match |profile->GetOriginalProfile()|. This is used to match
37 Profile* profile,
46 if (browser->profile()->GetOriginalProfile() !=
47 profile->GetOriginalProfile())
49 } else if (browser->profile() != profile) {
65 Profile* profile
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
instant_tab.cc 7 #include "chrome/browser/profiles/profile.h"
12 Profile* profile)
13 : InstantPage(delegate, "", profile, profile->IsOffTheRecord()) {
  /external/chromium_org/chrome/browser/ui/sync/
profile_signin_confirmation_helper.h 11 class Profile;
23 // profile was created.
25 bool HasBeenShutdown(Profile* profile);
30 bool HasSyncedExtensions(Profile* profile);
33 // profile before signin.
35 Profile* profile,
  /external/chromium_org/components/test/data/autofill/merge/tools/
flatten.py 22 profile = []
30 if len(profile):
31 # Reached the end of a profile.
32 # Save the current profile and prepare to build up the next one.
33 profiles.append(profile)
34 profile = []
36 # Append the current field's value to the current profile.
41 profile.append("'%s'" % field_value)
44 profile[-1] += ", '%s'" % field_value
47 if len(profile)
    [all...]
  /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...]
data_deleter.cc 10 #include "chrome/browser/profiles/profile.h"
35 void DeleteOrigin(Profile* profile,
40 DCHECK(profile);
57 profile->GetRequestContextForExtensions(),
74 ExtensionPrefs::Get(es->profile())->SetNeedsStorageGarbageCollection(true);
81 void DataDeleter::StartDeleting(Profile* profile,
84 DCHECK(profile);
89 profile,
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
chrome_new_window_delegate.cc 21 void RestoreTabUsingProfile(Profile* profile) {
22 TabRestoreService* service = TabRestoreServiceFactory::GetForProfile(profile);
44 Profile* profile,
47 profile_(profile),
74 Profile* profile_;
94 Profile* profile = ProfileManager::GetActiveUserProfile(); local
96 is_incognito ? profile->GetOffTheRecordProfile() : profile
107 Profile* profile = browser ? browser->profile() : NULL; local
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_backend_factory.h 12 class Profile;
21 static scoped_refptr<ShortcutsBackend> GetForProfile(Profile* profile);
24 Profile* profile);
30 BuildProfileForTesting(content::BrowserContext* profile);
35 BuildProfileNoDatabaseForTesting(content::BrowserContext* profile);
45 BuildServiceInstanceFor(content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_integration_service_browsertest.cc 8 #include "chrome/browser/profiles/profile.h"
22 browser()->profile()));
30 browser()->profile()->GetPrefs()->SetBoolean(prefs::kDisableDrive, false);
34 browser()->profile());
40 browser()->profile()->GetPrefs()->SetBoolean(prefs::kDisableDrive, true);
44 browser()->profile()));
  /external/chromium_org/chrome/browser/signin/
signin_error_notifier_factory_ash.cc 9 #include "chrome/browser/profiles/profile.h"
26 Profile* profile) {
28 GetInstance()->GetServiceForBrowserContext(profile, true));
41 Profile* profile = static_cast<Profile*>(context);
44 ProfileOAuth2TokenServiceFactory::GetForProfile(profile)->
47 return new SigninErrorNotifier(controller, profile);
signin_global_error_factory.cc 8 #include "chrome/browser/profiles/profile.h"
31 Profile* profile) {
33 GetInstance()->GetServiceForBrowserContext(profile, true));
48 Profile* profile = static_cast<Profile*>(context);
51 ProfileOAuth2TokenServiceFactory::GetForProfile(profile)->
54 return new SigninGlobalError(controller, profile);
  /external/chromium_org/chrome/browser/tab_contents/
tab_util.cc 7 #include "chrome/browser/profiles/profile.h"
34 SiteInstance* GetSiteInstanceForNewTab(Profile* profile,
38 if (ChromeWebUIControllerFactory::GetInstance()->UseWebUIForURL(profile, url))
39 return SiteInstance::CreateForURL(profile, url);
43 profile)->enabled_extensions().GetHostedAppByURL(url))
44 return SiteInstance::CreateForURL(profile, url);
  /external/chromium_org/chrome/browser/ui/webui/suggestions_internals/
suggestions_internals_ui.cc 7 #include "chrome/browser/profiles/profile.h"
28 Profile* profile = Profile::FromWebUI(web_ui); local
29 content::WebUIDataSource::Add(profile, html_source);
31 profile, new FaviconSource(profile, FaviconSource::FAVICON));
34 web_ui->AddMessageHandler(new SuggestionsInternalsUIHandler(profile));
  /external/chromium_org/chrome/browser/favicon/
favicon_service_factory.cc 18 Profile* profile, Profile::ServiceAccessType sat) {
19 if (!profile->IsOffTheRecord()) {
21 GetInstance()->GetServiceForBrowserContext(profile, true));
22 } else if (sat == Profile::EXPLICIT_ACCESS) {
23 // Profile must be OffTheRecord in this case.
26 profile->GetOriginalProfile(), true));
29 // Profile is OffTheRecord without access.
30 NOTREACHED() << "This profile is OffTheRecord"
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
typed_urls_sync_perf_test.cc 37 // Adds |num_urls| new unique typed urls to |profile|.
38 void AddURLs(int profile, int num_urls);
40 // Update all typed urls in |profile| by visiting them once again.
41 void UpdateURLs(int profile);
43 // Removes all typed urls for |profile|.
44 void RemoveURLs(int profile);
46 // Returns the number of typed urls stored in |profile|.
47 int GetURLCount(int profile);
60 void TypedUrlsSyncPerfTest::AddURLs(int profile, int num_urls) {
62 AddUrlToHistory(profile, NextURL())
    [all...]
  /hardware/libhardware/modules/usbaudio/
alsa_device_proxy.c 30 void proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile* profile,
35 proxy->profile = profile;
42 config->format != PCM_FORMAT_INVALID && profile_is_format_valid(profile, config->format)
43 ? config->format : profile->default_config.format;
45 config->rate != 0 && profile_is_sample_rate_valid(profile, config->rate)
46 ? config->rate : profile->default_config.rate;
48 config->channels != 0 && profile_is_channel_count_valid(profile, config->channels)
49 ? config->channels : profile->default_config.channels;
51 proxy->alsa_config.period_count = profile->default_config.period_count
67 alsa_device_profile* profile = proxy->profile; local
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
manage_profile_overlay.css 5 #manage-profile-overlay {
9 .profile-icon-grid-item {
16 .profile-icon {
21 #create-profile-name-input-container,
22 #manage-profile-name-input-container {
26 #create-profile-name-input-container {
30 #create-profile-name,
31 #manage-profile-name {
35 #create-profile-name:invalid,
36 #manage-profile-name:invalid
    [all...]

Completed in 1236 milliseconds

1 2 34 5 6 7 8 91011>>