Searched defs:profiles (Results 1 - 25 of 87) sorted by relevance

1234

/external/chromium_org/chrome/browser/profiles/
H A Dprofile_avatar_icon_util.h22 namespace profiles { namespace
95 } // namespace profiles
H A Dprofiles_state.h17 namespace profiles { namespace
19 // Checks if multiple profiles is enabled.
58 // The distinction is needed because guest profiles are implemented as
59 // incognito profiles.
66 // Returns the sign-in error controller for the given profile. Some profiles,
67 // like guest profiles, may not have a controller so this function may return
76 } // namespace profiles
H A Dprofile_shortcut_manager_win.h9 #include "chrome/browser/profiles/profile_shortcut_manager.h"
16 namespace profiles { namespace
32 } // namespace profiles
88 // Must only be called when the number profiles is 2.
H A Dprofile_window.h9 #include "chrome/browser/profiles/profile_manager.h"
10 #include "chrome/browser/profiles/profile_metrics.h"
19 namespace profiles { namespace
89 profiles::UserManagerTutorialMode tutorial_mode,
90 profiles::UserManagerProfileSelected profile_open_action,
111 } // namespace profiles
H A Dprofiles_state.cc5 #include "chrome/browser/profiles/profiles_state.h"
12 #include "chrome/browser/profiles/gaia_info_update_service.h"
13 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/profiles/profile_info_cache.h"
16 #include "chrome/browser/profiles/profile_manager.h"
27 namespace profiles { namespace
71 // a default name, use the profiles's email address. Otherwise, it
184 } // namespace profiles
/external/chromium_org/chrome/browser/apps/
H A Dapp_window_registry_util.cc10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/profiles/profile_manager.h"
25 std::vector<Profile*> profiles = local
27 for (std::vector<Profile*>::const_iterator i = profiles.begin();
28 i != profiles.end();
46 std::vector<Profile*> profiles = local
48 for (std::vector<Profile*>::const_iterator i = profiles.begin();
49 i != profiles.end();
75 std::vector<Profile*> profiles = local
77 for (std::vector<Profile*>::const_iterator i = profiles
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dprofile_chooser_constants.h8 namespace profiles { namespace
40 }; // namespace profiles
/external/chromium_org/chrome/browser/devtools/
H A Dbrowser_list_tabcontents_provider.cc10 #include "chrome/browser/profiles/profile.h"
46 std::set<Profile*> profiles; local
48 profiles.insert((*it)->profile());
50 for (std::set<Profile*>::iterator it = profiles.begin();
51 it != profiles.end(); ++it) {
/external/chromium_org/ash/test/
H A Ddisplay_manager_test_api.cc95 const std::vector<ui::ColorCalibrationProfile>& profiles) {
97 profiles);
93 SetAvailableColorProfiles( int64 display_id, const std::vector<ui::ColorCalibrationProfile>& profiles) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
H A DProfile.java5 package org.chromium.chrome.browser.profiles;
H A DProfileDownloader.java5 package org.chromium.chrome.browser.profiles;
16 * See chrome/browser/profiles/profile_downloader.h/cc for more details.
H A DMostVisitedSites.java5 package org.chromium.chrome.browser.profiles;
/external/chromium_org/chrome/browser/importer/
H A Dimporter_list.cc28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) { argument
30 // IE always exists and doesn't have multiple profiles.
38 profiles->push_back(ie);
43 void DetectSafariProfiles(std::vector<importer::SourceProfile*>* profiles) { argument
55 profiles->push_back(safari);
63 std::vector<importer::SourceProfile*>* profiles) {
99 profiles->push_back(firefox);
107 std::vector<importer::SourceProfile*> profiles; local
113 DetectFirefoxProfiles(locale, &profiles);
114 DetectIEProfiles(&profiles);
62 DetectFirefoxProfiles(const std::string locale, std::vector<importer::SourceProfile*>* profiles) argument
175 SourceProfilesLoaded( const base::Closure& profiles_loaded_callback, const std::vector<importer::SourceProfile*>& profiles) argument
[all...]
/external/chromium_org/content/renderer/media/
H A Drtc_video_encoder_factory.cc67 std::vector<media::VideoEncodeAccelerator::SupportedProfile> profiles = local
69 for (size_t i = 0; i < profiles.size(); ++i)
70 VEAToWebRTCCodecs(&codecs_, profiles[i]);
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
H A Dgenerate_builtins.py122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
130 path.join(builtins_dir, 'profiles'), '*.' + extension)
132 profiles = []
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
135 return profiles
223 profiles = get_profile_list() variable
225 print 'static gl_shader *builtin_profiles[%d];' % len(profiles)
271 for (filename, profile) in profiles:
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
130 path.join(builtins_dir, 'profiles'), '*.' + extension)
132 profiles = []
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
135 return profiles
223 profiles = get_profile_list() variable
225 print 'static gl_shader *builtin_profiles[%d];' % len(profiles)
271 for (filename, profile) in profiles:
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dmount_path_util.cc14 #include "chrome/browser/chromeos/profiles/profile_helper.h"
15 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/profiles/profile_manager.h"
94 const std::vector<Profile*>& profiles = local
97 for (size_t i = 0; i < profiles.size(); ++i) {
98 Profile* original_profile = profiles[i]->GetOriginalProfile();
100 if (original_profile != profiles[i] ||
/external/chromium_org/chrome/browser/metrics/
H A Dextensions_metrics_provider.cc16 #include "chrome/browser/profiles/profile_manager.h"
38 // profiles. Combining two states should always result in the higher state.
40 // FROM_STORE_UNVERIFIED. The state of the two profiles together will be
189 // The off-store metric includes information from all loaded profiles at the
191 std::vector<Profile*> profiles = profile_manager->GetLoadedProfiles(); local
192 for (size_t i = 0u; i < profiles.size() && state < OFF_STORE; ++i) {
194 extensions::ExtensionSystem::Get(profiles[i])->install_verifier();
197 GetInstalledExtensions(profiles[i]));
211 // UMA reports do not support multiple profiles, but extensions are installed
214 // profiles
[all...]
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.cc18 #include "chrome/browser/profiles/profile_manager.h"
118 LastDownloadFinder::LastDownloadFinder(const std::vector<Profile*>& profiles, argument
122 // the search in profiles while it is running.
133 // Begin the seach for all given profiles.
135 profiles.begin(),
136 profiles.end(),
141 // Do not look in OTR profiles or in profiles that do not participate in
158 // No history service is returned for profiles that do not save history.
184 // |profile| may not be present in the set of profiles
[all...]
/external/chromium_org/chrome/browser/ui/ash/
H A Dchrome_shell_delegate_views.cc19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/profiles/profile_manager.h"
221 // Start the error notifier services for the already loaded profiles.
222 const std::vector<Profile*> profiles = local
224 for (std::vector<Profile*>::const_iterator it = profiles.begin();
225 it != profiles.end(); ++it) {
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_ie_toolbar_import_win_unittest.cc22 std::vector<AutofillProfile>* profiles,
162 std::vector<AutofillProfile> profiles; local
164 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
165 ASSERT_EQ(2U, profiles.size());
166 // The profiles are read in reverse order.
167 EXPECT_EQ(profile1[0].value, profiles[1].GetRawInfo(NAME_FIRST));
168 EXPECT_EQ(profile1[1].value, profiles[1].GetRawInfo(NAME_MIDDLE));
169 EXPECT_EQ(profile1[2].value, profiles[1].GetRawInfo(NAME_LAST));
170 EXPECT_EQ(profile1[3].value, profiles[1].GetRawInfo(EMAIL_ADDRESS));
171 EXPECT_EQ(profile1[4].value, profiles[
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dd1_srtp.c194 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
201 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null()))
214 sk_SRTP_PROTECTION_PROFILE_push(profiles,p);
225 *out=profiles;
230 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles) argument
233 return !ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles);
236 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles) argument
239 return !ssl_ctx_make_profiles(profiles,&s->srtp_profiles);
267 profiles specified */
350 /* Pick our most preferred profile. If no profiles hav
[all...]
/external/openssl/ssl/
H A Dd1_srtp.c173 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
180 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null()))
193 if (sk_SRTP_PROTECTION_PROFILE_find(profiles,p) >= 0)
196 sk_SRTP_PROTECTION_PROFILE_free(profiles);
200 sk_SRTP_PROTECTION_PROFILE_push(profiles,p);
205 sk_SRTP_PROTECTION_PROFILE_free(profiles);
212 *out=profiles;
217 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles) argument
219 return ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles);
222 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles) argument
[all...]
/external/chromium_org/ash/display/
H A Ddisplay_info.h202 const std::vector<ui::ColorCalibrationProfile>& profiles) {
203 available_color_profiles_ = profiles;
201 set_available_color_profiles( const std::vector<ui::ColorCalibrationProfile>& profiles) argument
/external/chromium_org/chrome/browser/autofill/android/
H A Dpersonal_data_manager_android.cc15 #include "chrome/browser/profiles/profile_manager.h"
191 const std::vector<AutofillProfile*>& profiles = local
194 DCHECK_LT(index_size_t, profiles.size());
195 return CreateJavaProfileFromNative(env, *profiles[index_size_t]);

Completed in 3921 milliseconds

1234