Searched refs:profile (Results 101 - 125 of 3131) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/app_list/test/
H A Dfake_profile_store.cc7 #include "chrome/browser/profiles/profile.h"
16 void FakeProfileStore::LoadProfile(Profile* profile) { argument
17 loaded_profiles_[profile->GetPath()] = profile;
18 CallbacksByPath::iterator it = callbacks_.find(profile->GetPath());
20 it->second.Run(profile);
25 void FakeProfileStore::RemoveProfile(Profile* profile) { argument
26 base::FilePath path(profile->GetPath());
42 Profile* profile = GetProfileByPath(path); local
43 if (profile) {
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dpinned_tab_service_unittest.cc21 KeyedService* BuildPinnedTabService(content::BrowserContext* profile) { argument
22 return new PinnedTabService(static_cast<Profile*>(profile));
25 PinnedTabService* BuildForProfile(Profile* profile) { argument
28 profile, BuildPinnedTabService));
37 TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile(); variable
38 pinned_tab_service_ = BuildForProfile(profile);
39 return profile;
55 Browser::CreateParams params(Browser::TYPE_POPUP, profile(),
65 PinnedTabCodec::ReadPinnedTabs(profile()));
74 PinnedTabCodec::ReadPinnedTabs(profile()));
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dsignin_internals_ui.cc8 #include "chrome/browser/profiles/profile.h"
33 Profile* profile = Profile::FromWebUI(web_ui); local
34 content::WebUIDataSource::Add(profile, CreateSignInInternalsHTMLSource());
35 if (profile) {
37 AboutSigninInternalsFactory::GetForProfile(profile);
44 Profile* profile = Profile::FromWebUI(web_ui()); local
45 if (profile) {
47 AboutSigninInternalsFactory::GetForProfile(profile);
59 Profile* profile = Profile::FromWebUI(web_ui()); local
60 if (!profile)
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dsettings_window_manager.cc7 #include "chrome/browser/profiles/profile.h"
36 void SettingsWindowManager::ShowChromePageForProfile(Profile* profile, argument
38 // Use the original (non off-the-record) profile for settings unless
40 if (!profile->IsGuestSession() && profile->IsOffTheRecord())
41 profile = profile->GetOriginalProfile();
44 Browser* browser = FindBrowserForProfile(profile);
46 DCHECK(browser->profile() == profile);
76 FindBrowserForProfile(Profile* profile) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view_unittest.cc10 #include "chrome/browser/profiles/profile.h"
32 TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile(); variable
36 profile, &BookmarkBarViewInstantExtendedTest::CreateTemplateURLService);
37 return profile;
42 content::BrowserContext* profile) {
44 static_cast<Profile*>(profile)->GetPrefs(),
56 profile()->CreateBookmarkModel(true);
58 BookmarkModelFactory::GetForProfile(profile()));
61 browser()->profile()->GetPrefs()->SetBoolean(
67 browser()->profile()
41 CreateTemplateURLService( content::BrowserContext* profile) argument
[all...]
/external/chromium_org/apps/
H A Dlauncher.h26 // the |command_line| fields present. |extension| and |profile| must not be
29 void LaunchPlatformAppWithCommandLine(Profile* profile,
36 void LaunchPlatformAppWithPath(Profile* profile,
41 void LaunchPlatformApp(Profile* profile,
49 Profile* profile,
58 void LaunchPlatformAppWithUrl(Profile* profile,
64 void RestartPlatformApp(Profile* profile,
/external/chromium_org/chrome/browser/autofill/
H A Dpersonal_data_manager_factory.cc11 #include "chrome/browser/profiles/profile.h"
21 Profile* profile) {
23 GetInstance()->GetServiceForBrowserContext(profile, true));
43 Profile* profile = Profile::FromBrowserContext(context); local
47 profile, Profile::EXPLICIT_ACCESS),
48 profile->GetPrefs(),
49 profile->IsOffTheRecord());
20 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/chromeos/login/session/
H A Drestore_after_crash_session_manager_delegate.cc10 #include "chrome/browser/profiles/profile.h"
20 RestoreAfterCrashSessionManagerDelegate(Profile* profile, argument
22 : profile_(profile), login_user_id_(login_user_id) {
40 user_session_mgr->InitRlz(profile());
41 user_session_mgr->InitializeCerts(profile());
48 content::Details<Profile>(profile()));
69 UserSessionManager::GetInstance()->RestoreAuthenticationSession(profile());
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
H A Dsigned_in_devices_manager_unittest.cc20 KeyedService* CreateProfileSyncServiceMock(content::BrowserContext* profile) { argument
27 scoped_ptr<TestingProfile> profile(new TestingProfile());
28 profile->GetPrefs()->SetString(prefs::kGoogleServicesUsername, "foo");
30 profile.get(), CreateProfileSyncServiceMock);
31 SignedInDevicesManager manager(profile.get());
36 profile.get());
/external/chromium_org/chrome/browser/media/
H A Dprotected_media_identifier_permission_context_factory.cc9 #include "chrome/browser/profiles/profile.h"
18 explicit Service(Profile* profile) { argument
19 context_ = new ProtectedMediaIdentifierPermissionContext(profile);
41 Profile* profile) {
43 GetInstance()->GetServiceForBrowserContext(profile, true))->context();
66 content::BrowserContext* profile) const {
67 return new Service(static_cast<Profile*>(profile));
40 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/
H A Dplatform_util_chromeos.cc23 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { argument
25 file_manager::util::ShowItemInFolder(profile, full_path);
28 void OpenItem(Profile* profile, const base::FilePath& full_path) { argument
30 file_manager::util::OpenItem(profile, full_path);
33 void OpenExternal(Profile* profile, const GURL& url) { argument
45 chrome::NavigateParams params(profile, url, ui::PAGE_TRANSITION_LINK);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_destroyer.cc11 #include "chrome/browser/profiles/profile.h"
29 void ProfileDestroyer::DestroyProfileWhenAppropriate(Profile* const profile) { argument
32 DCHECK(profile);
33 profile->MaybeSendDestroyedNotification();
39 if (profile->AsTestingProfile() == NULL) {
40 GetHostsForProfile(profile, &hosts);
41 if (!profile->IsOffTheRecord() && profile->HasOffTheRecordProfile())
42 GetHostsForProfile(profile->GetOffTheRecordProfile(), &hosts);
51 DCHECK(hosts.empty() || profile
72 DestroyOffTheRecordProfileNow(Profile* const profile) argument
92 ProfileDestroyer(Profile* const profile, HostSet* hosts) argument
170 GetHostsForProfile( Profile* const profile, HostSet* hosts) argument
[all...]
/external/chromium_org/chrome/browser/signin/
H A Daccount_reconcilor_factory.cc7 #include "chrome/browser/profiles/profile.h"
26 Profile* profile) {
28 GetInstance()->GetServiceForBrowserContext(profile, true));
38 Profile* profile = Profile::FromBrowserContext(context); local
40 ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
41 SigninManagerFactory::GetForProfile(profile),
42 ChromeSigninClientFactory::GetForProfile(profile));
25 GetForProfile( Profile* profile) argument
H A Daccount_tracker_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
28 AccountTrackerServiceFactory::GetForProfile(Profile* profile) { argument
30 GetInstance()->GetServiceForBrowserContext(profile, true));
51 Profile* profile = static_cast<Profile*>(context); local
54 ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
55 profile->GetPrefs(),
56 profile->GetRequestContext());
H A Dprofile_oauth2_token_service_factory.cc7 #include "chrome/browser/profiles/profile.h"
33 ProfileOAuth2TokenServiceFactory::GetForProfile(Profile* profile) { argument
35 GetInstance()->GetServiceForBrowserContext(profile, true));
41 Profile* profile) {
43 GetForProfile(profile));
54 Profile* profile = static_cast<Profile*>(context); local
58 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile));
40 GetPlatformSpecificForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/ssl/
H A Dchrome_ssl_host_state_delegate_factory.cc9 #include "chrome/browser/profiles/profile.h"
18 explicit Service(Profile* profile) argument
19 : decisions_(new ChromeSSLHostStateDelegate(profile)) {}
35 Profile* profile) {
37 profile, true))->decisions();
56 content::BrowserContext* profile) const {
57 return new Service(static_cast<Profile*>(profile));
34 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/supervised_user/chromeos/
H A Dmanager_password_service_factory.cc11 #include "chrome/browser/profiles/profile.h"
22 ManagerPasswordServiceFactory::GetForProfile(Profile* profile) { argument
24 GetInstance()->GetServiceForBrowserContext(profile, true));
46 Profile* profile= static_cast<Profile*>(context); local
47 user_manager::User* user = ProfileHelper::Get()->GetUserByProfile(profile);
53 SupervisedUserSyncServiceFactory::GetForProfile(profile),
55 profile));
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
21 Profile* profile) {
23 GetInstance()->GetServiceForBrowserContext(profile, true));
32 KeyedService* SupervisedUserServiceFactory::BuildInstanceFor(Profile* profile) { argument
33 return new SupervisedUserService(profile);
56 content::BrowserContext* profile) const {
57 return BuildInstanceFor(static_cast<Profile*>(profile));
20 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/sync/
H A Dsync_startup_tracker.cc7 #include "chrome/browser/profiles/profile.h"
11 SyncStartupTracker::SyncStartupTracker(Profile* profile, Observer* observer) argument
12 : profile_(profile),
51 Profile* profile) {
53 if (!profile->IsSyncAccessible())
57 ProfileSyncServiceFactory::GetForProfile(profile);
60 if (!profile->IsSyncAccessible() || !service ||
50 GetSyncServiceState( Profile* profile) argument
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsync_app_list_helper.h34 // Moves an app in |profile|.
35 void MoveApp(Profile* profile, size_t from, size_t to);
37 // Moves an app in |profile| to |folder_id|.
38 void MoveAppToFolder(Profile* profile,
42 // Moves an app in |profile| from |folder_id| to the top level list of apps.
43 void MoveAppFromFolder(Profile* profile,
51 void PrintAppList(Profile* profile);
59 // Returns true iff |profile| has the same app list as |test_|->verifier()
61 bool AppListMatchesVerifier(Profile* profile);
65 void PrintItem(Profile* profile,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_decoder.c36 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile) argument
39 switch (u_reduce_video_profile(profile)) {
49 enum pipe_video_profile profile,
64 profile,
71 switch (u_reduce_video_profile(profile)) {
73 return vl_create_mpeg12_decoder(pipe, profile, entrypoint, chroma_format,
48 vl_create_decoder(struct pipe_context *pipe, enum pipe_video_profile profile, enum pipe_video_entrypoint entrypoint, enum pipe_video_chroma_format chroma_format, unsigned width, unsigned height, unsigned max_references, bool expect_chunked_decode) argument
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_decoder.c36 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile) argument
39 switch (u_reduce_video_profile(profile)) {
49 enum pipe_video_profile profile,
64 profile,
71 switch (u_reduce_video_profile(profile)) {
73 return vl_create_mpeg12_decoder(pipe, profile, entrypoint, chroma_format,
48 vl_create_decoder(struct pipe_context *pipe, enum pipe_video_profile profile, enum pipe_video_entrypoint entrypoint, enum pipe_video_chroma_format chroma_format, unsigned width, unsigned height, unsigned max_references, bool expect_chunked_decode) argument
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinstall_limiter_factory.cc8 #include "chrome/browser/profiles/profile.h"
16 InstallLimiter* InstallLimiterFactory::GetForProfile(Profile* profile) { argument
18 GetInstance()->GetServiceForBrowserContext(profile, true));
37 content::BrowserContext* profile) const {
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dpath_util_unittest.cc38 TestingProfile profile; local
42 const base::FilePath kDownloads = GetDownloadsFolderForProfile(&profile);
47 &profile,
53 &profile,
60 &profile,
66 &profile,
72 Profile* profile = CreateProfileWithName("user1"); local
74 const base::FilePath kDrive = drive::util::GetDriveMountPointPath(profile);
83 profile,
89 profile,
[all...]
/external/chromium_org/chrome/browser/dom_distiller/
H A Dprofile_utils.cc10 #include "chrome/browser/profiles/profile.h"
15 void RegisterDomDistillerViewerSource(Profile* profile) { argument
20 // The LazyDomDistillerService deletes itself when the profile is destroyed.
23 profile, dom_distiller_service_factory);
25 profile,

Completed in 364 milliseconds

1234567891011>>