HomeSort by relevance Sort by last modified time
    Searched defs:profiles (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/profiles/
profile_avatar_icon_util.h 22 namespace profiles { namespace
95 } // namespace profiles
profiles_state.h 17 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
profile_shortcut_manager_win.h 9 #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.
profile_window.h 9 #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
profiles_state.cc 5 #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
profile_window.cc 5 #include "chrome/browser/profiles/profile_window.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
18 #include "chrome/browser/profiles/profile_manager.h"
131 profiles::FindOrCreateNewWindowForProfile(
145 profiles::UserManagerTutorialMode tutorial_mode,
146 profiles::UserManagerProfileSelected profile_open_action,
156 if (tutorial_mode == profiles::USER_MANAGER_TUTORIAL_OVERVIEW) {
157 page += profiles::kUserManagerDisplayTutorial;
167 profiles::USER_MANAGER_SELECT_PROFILE_TASK_MANAGER)
187 namespace profiles { namespace
    [all...]
  /external/chromium_org/chrome/browser/apps/
app_window_registry_util.cc 10 #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.begin()
    [all...]
  /external/chromium_org/chrome/browser/devtools/
browser_list_tabcontents_provider.cc 10 #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/chrome/browser/ui/
profile_chooser_constants.h 8 namespace profiles { namespace
40 }; // namespace profiles
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
Profile.java 5 package org.chromium.chrome.browser.profiles;
MostVisitedSites.java 5 package org.chromium.chrome.browser.profiles;
ProfileDownloader.java 5 package org.chromium.chrome.browser.profiles;
16 * See chrome/browser/profiles/profile_downloader.h/cc for more details.
  /external/chromium_org/chrome/browser/importer/
importer_list.cc 28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) {
30 // IE always exists and doesn't have multiple profiles.
38 profiles->push_back(ie);
43 void DetectSafariProfiles(std::vector<importer::SourceProfile*>* profiles) {
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);
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_video_encoder_factory.cc 67 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/chrome/browser/chromeos/file_system_provider/
mount_path_util.cc 14 #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/ui/ash/
chrome_shell_delegate_views.cc 19 #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/third_party/mesa/src/src/glsl/builtins/tools/
generate_builtins.py 122 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/
generate_builtins.py 122 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/android/javatests/src/org/chromium/chrome/browser/autofill/
PersonalDataManagerTest.java 59 assertEquals("Should still have only two profiles", 2, mHelper.getNumberOfProfiles());
268 List<AutofillProfile> profiles = mHelper.getProfiles(); local
269 assertEquals(expectedLabels.size(), profiles.size());
270 for (int i = 0; i < profiles.size(); ++i) {
271 int idx = expectedLabels.indexOf(profiles.get(i).getLabel());
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 15 #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]);
  /external/chromium_org/chrome/browser/metrics/
extensions_metrics_provider.cc 16 #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...]
signin_status_metrics_provider.cc 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/profiles/profile_info_cache.h"
16 #include "chrome/browser/profiles/profile_manager.h"
109 // profiles are being monitored.
159 // the opened profiles signin status.
166 std::vector<Profile*> profiles = profile_manager->GetLoadedProfiles(); local
167 for (size_t i = 0; i < profiles.size(); ++i) {
169 profiles[i]);
179 if (profiles.empty()) {
  /external/chromium_org/chrome/browser/sync/test/integration/
extensions_helper.cc 12 #include "chrome/browser/profiles/profile.h"
138 // A helper class to implement waiting for a set of profiles to have matching
143 explicit ExtensionsMatchChecker(const std::vector<Profile*>& profiles);
178 const std::vector<Profile*>& profiles)
179 : profiles_(profiles), observing_(false) {
265 std::vector<Profile*> profiles; local
266 profiles.push_back(test()->verifier());
268 profiles.push_back(test()->GetProfile(i));
271 ExtensionsMatchChecker checker(profiles);
  /external/chromium_org/chrome/common/importer/
firefox_importer_utils.cc 42 // path of profiles.ini. IsRelative=0 refers to a custom profile
71 std::vector<std::string> profiles; local
75 profiles.push_back(current_profile);
77 // Profiles are continuously numbered. So we exit when we can't
83 if (profiles.empty())
86 // When multiple profiles exist, the path to the default profile is returned,
87 // since the other profiles are used mostly by developers for testing.
88 for (std::vector<std::string>::const_iterator it = profiles.begin();
89 it != profiles.end(); ++it)
94 return GetProfilePath(root, profiles.front())
    [all...]
  /external/chromium_org/chromeos/network/
network_profile_handler.cc 78 const base::Value* profiles = NULL; local
79 properties.GetWithoutPathExpansion(shill::kProfilesProperty, &profiles);
80 if (!profiles) {
85 OnPropertyChanged(shill::kProfilesProperty, *profiles);
102 VLOG(2) << "Profiles: " << profiles_.size();
103 // Search for removed profiles.
122 // Skip known profiles. The associated userhash should never change.

Completed in 705 milliseconds

1 2 3 4