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

<<11121314151617181920>>

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/
DomDistillerServiceFactory.java 9 import org.chromium.chrome.browser.profiles.Profile;
16 * {@link DomDistillerService} instances. Each {@link Profile} will at most
23 private static final HashMap<Profile, DomDistillerService> sServiceMap =
24 new HashMap<Profile, DomDistillerService>();
27 * Returns Java DomDistillerService for given Profile.
29 public static DomDistillerService getForProfile(Profile profile) {
31 DomDistillerService service = sServiceMap.get(profile);
33 service = (DomDistillerService) nativeGetForProfile(profile);
34 sServiceMap.put(profile, service)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_util.h 15 class Profile;
50 Profile* profile,
56 // FilePath. |render_view_host| and |profile| are needed to obtain the
62 Profile* profile,
86 Profile* profile,
91 // Grants permission to access per-profile folder (Downloads, Drive) of
92 // |profile| for the process |render_view_process_id|
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmark_apitest.cc 11 #include "chrome/browser/profiles/profile.h"
27 Profile* profile = browser()->profile(); local
28 BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile);
30 ChromeBookmarkClientFactory::GetForProfile(profile);
42 profile->GetPrefs()->Set(bookmarks::prefs::kManagedBookmarks, list);
  /external/chromium_org/chrome/browser/extensions/
extension_install_ui.h 14 class Profile;
27 static ExtensionInstallUI* Create(Profile* profile);
51 static void OpenAppInstalledUI(Profile* profile, const std::string& app_id);
64 // Creates an ExtensionInstallPrompt from |profile|.
68 Profile* profile);
70 Profile* profile() { return profile_; function in class:ExtensionInstallUI
    [all...]
extension_sync_service_factory.cc 10 #include "chrome/browser/profiles/profile.h"
18 Profile* profile) {
20 GetInstance()->GetServiceForBrowserContext(profile, true));
40 Profile* profile = Profile::FromBrowserContext(context); local
42 profile,
44 extensions::ExtensionSystem::Get(profile)->extension_service());
  /external/chromium_org/chrome/browser/profiles/
gaia_info_update_service_factory.cc 8 #include "chrome/browser/profiles/profile.h"
25 Profile* profile) {
27 GetInstance()->GetServiceForBrowserContext(profile, true));
37 Profile* profile = static_cast<Profile*>(context); local
38 if (!GAIAInfoUpdateService::ShouldUseGAIAProfileInfo(profile))
40 return new GAIAInfoUpdateService(profile);
profiles_state.h 13 class Profile;
22 // Returns the path to the default profile directory, based on the given
26 // Register multi-profile related preferences in Local State.
29 // Returns the display name of the specified on-the-record profile (or guest),
32 // there is only one local profile present, it will return
33 // IDS_SINGLE_PROFILE_DISPLAY_NAME, unless the profile has a user entered
37 // Returns the string to use in the avatar button for the specified profile.
40 base::string16 GetAvatarButtonTextForProfile(Profile* profile);
42 // Update the name of |profile| to |new_profile_name|. This updates th
    [all...]
profile_manager.cc 118 // Simple task to log the size of the current profile.
125 UMA_HISTOGRAM_COUNTS_10000("Profile.TotalSize", size_MB);
129 UMA_HISTOGRAM_COUNTS_10000("Profile.HistorySize", size_MB);
133 UMA_HISTOGRAM_COUNTS_10000("Profile.TotalHistorySize", size_MB);
137 UMA_HISTOGRAM_COUNTS_10000("Profile.CookiesSize", size_MB);
141 UMA_HISTOGRAM_COUNTS_10000("Profile.BookmarksSize", size_MB);
145 UMA_HISTOGRAM_COUNTS_10000("Profile.FaviconsSize", size_MB);
149 UMA_HISTOGRAM_COUNTS_10000("Profile.TopSitesSize", size_MB);
153 UMA_HISTOGRAM_COUNTS_10000("Profile.VisitedLinksSize", size_MB);
157 UMA_HISTOGRAM_COUNTS_10000("Profile.WebDataSize", size_MB)
299 Profile* profile = GetLastUsedProfile(); local
372 Profile* profile = GetProfileByPath(profile_dir); local
438 Profile* profile = info->profile.get(); local
497 Profile* profile = GetProfile(profile_path.Append(profile_dir)); local
532 std::string profile; local
629 Profile* profile = GetProfileByPath(profile_dir); local
862 Profile* profile = browser->profile(); local
881 Profile* profile = browser->profile(); local
1039 Profile* profile = GetProfile(default_profile_dir); local
1057 Profile* profile = GetProfile(default_profile_dir); local
1092 Profile* profile = GetProfileByPath(profile_dir); local
1254 Profile* profile = browser->profile(); local
    [all...]
  /external/chromium_org/chrome/browser/services/gcm/
fake_signin_manager.cc 9 #include "chrome/browser/profiles/profile.h"
21 FakeSigninManager::FakeSigninManager(Profile* profile)
24 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile)),
27 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile),
28 ProfileOAuth2TokenServiceFactory::GetForProfile(profile)),
30 profile_(profile) {
57 return new FakeSigninManager(Profile::FromBrowserContext(context));
  /external/chromium_org/chrome/browser/signin/
signin_manager_factory.h 15 class Profile;
18 // Profiles. Listens for the Profile's destruction notification and cleans up
36 // Returns the instance of SigninManager associated with this profile
37 // (creating one if none exists). Returns NULL if this profile cannot have a
38 // SigninManager (for example, if |profile| is incognito).
39 static SigninManagerBase* GetForProfile(Profile* profile);
41 // Returns the instance of SigninManager associated with this profile. Returns
44 static SigninManagerBase* GetForProfileIfExists(Profile* profile);
    [all...]
signin_ui_util.cc 10 #include "chrome/browser/profiles/profile.h"
40 GlobalError* GetSignedInServiceError(Profile* profile) {
41 std::vector<GlobalError*> errors = GetSignedInServiceErrors(profile);
47 std::vector<GlobalError*> GetSignedInServiceErrors(Profile* profile) {
55 SigninGlobalErrorFactory::GetForProfile(profile);
62 if (profile->IsSyncAccessible()) {
63 SyncGlobalError* error = SyncGlobalErrorFactory::GetForProfile(profile);
72 base::string16 GetSigninMenuLabel(Profile* profile)
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/chromeos/
supervised_user_password_service_factory.cc 10 #include "chrome/browser/profiles/profile.h"
21 SupervisedUserPasswordServiceFactory::GetForProfile(Profile* profile) {
23 GetInstance()->GetServiceForBrowserContext(profile, true));
44 Profile* profile= static_cast<Profile*>(context); local
45 user_manager::User* user = ProfileHelper::Get()->GetUserByProfile(profile);
52 profile));
  /external/chromium_org/chrome/browser/sync/
sync_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);
43 ProfileSyncServiceFactory::GetForProfile(profile);
53 return new SyncErrorNotifier(sync_error_controller, profile);
profile_sync_service_factory.cc 16 #include "chrome/browser/profiles/profile.h"
51 Profile* profile) {
56 GetInstance()->GetServiceForBrowserContext(profile, true));
100 Profile* profile = static_cast<Profile*>(context); local
102 SigninManagerBase* signin = SigninManagerFactory::GetForProfile(profile);
105 // the profile notifications and purge the GCM store when the profile i
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.h 14 class Profile;
28 bool AppStatesMatch(Profile* profile1, Profile* profile2);
30 // Gets the page ordinal value for the applications with |name| in |profile|.
31 syncer::StringOrdinal GetPageOrdinalForApp(Profile* profile,
35 // |profile|.
36 void SetPageOrdinalForApp(Profile* profile,
41 // |profile|
    [all...]
themes_helper.cc 32 ThemeService* GetThemeService(Profile* profile) {
33 return ThemeServiceFactory::GetForProfile(profile);
44 std::string GetThemeID(Profile* profile) {
45 return GetThemeService(profile)->GetThemeID();
48 bool UsingCustomTheme(Profile* profile) {
49 return GetThemeID(profile) != ThemeService::kDefaultThemeID;
52 bool UsingDefaultTheme(Profile* profile)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
profile_loader.cc 32 base::Callback<void(Profile*)> callback) {
35 Profile* profile = profile_store_->GetProfileByPath(profile_file_path); local
36 if (profile) {
37 callback.Run(profile);
51 base::Callback<void(Profile*)> callback,
52 Profile* profile) {
55 callback.Run(profile);
  /external/chromium_org/chrome/browser/ui/sync/
inline_login_dialog.cc 7 #include "chrome/browser/profiles/profile.h"
14 void InlineLoginDialog::Show(Profile* profile) {
15 chrome::ShowWebDialog(NULL, profile, new InlineLoginDialog(profile));
18 InlineLoginDialog::InlineLoginDialog(Profile* profile)
19 : profile_(profile) {
  /external/chromium_org/chrome/browser/background/
background_contents_service_unittest.cc 49 const base::DictionaryValue* GetPrefs(Profile* profile) {
50 return profile->GetPrefs()->GetDictionary(
55 std::string GetPrefURLForApp(Profile* profile, const base::string16& appid) {
56 const base::DictionaryValue* pref = GetPrefs(profile);
70 explicit MockBackgroundContents(Profile* profile)
72 profile_(profile) {
74 MockBackgroundContents(Profile* profile, const std::string& id
220 TestingProfile profile; local
225 TestingProfile profile; local
236 TestingProfile profile; local
263 TestingProfile profile; local
284 TestingProfile profile; local
316 TestingProfile profile; local
375 TestingProfile profile; local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
passwords_sync_perf_test.cc 26 // Adds |num_logins| new unique passwords to |profile|.
27 void AddLogins(int profile, int num_logins);
29 // Updates the password for all logins for |profile|.
30 void UpdateLogins(int profile);
32 // Removes all logins for |profile|.
33 void RemoveLogins(int profile);
46 void PasswordsSyncPerfTest::AddLogins(int profile, int num_logins) {
48 AddLogin(GetPasswordStore(profile), NextLogin());
52 void PasswordsSyncPerfTest::UpdateLogins(int profile) {
54 GetLogins(GetPasswordStore(profile), logins)
    [all...]
autofill_sync_perf_test.cc 44 // Adds |num_profiles| new autofill profiles to the sync profile |profile|.
45 void AddProfiles(int profile, int num_profiles);
47 // Updates all autofill profiles for the sync profile |profile|.
48 void UpdateProfiles(int profile);
50 // Removes all autofill profiles from |profile|.
51 void RemoveProfiles(int profile);
53 // Adds |num_keys| new autofill keys to the sync profile |profile|
126 AutofillProfile profile; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
profilesPanel.css 32 #profile-views {
37 .profile-view .data-grid table.data {
41 .profile-view .data-grid tr:not(.selected) .highlight {
45 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) {
49 .profile-view .data-grid td.numeric-column {
53 .profile-view .data-grid div.profile-multiple-values {
57 .profile-view .data-grid span.percent-column {
63 .profile-view .data-grid tr.selected span {
77 .profile-launcher-view-tree-item > .icon
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_test_utils.cc 85 FormGroup* profile, ServerFieldType type, const char* value) {
87 profile->SetRawInfo(type, base::UTF8ToUTF16(value));
91 AutofillProfile profile(base::GenerateGUID(), "http://www.example.com/");
92 SetProfileInfo(&profile,
104 return profile;
108 AutofillProfile profile(base::GenerateGUID(), "https://www.example.com/");
109 SetProfileInfo(&profile,
121 return profile;
125 AutofillProfile profile(GetFullProfile());
126 profile.set_origin(kSettingsOrigin)
    [all...]
  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.cc 10 #include "chrome/browser/profiles/profile.h"
38 Profile* profile) {
39 return GetInstance()->GetForProfileInternal(profile);
44 ProfilePolicyConnectorFactory::CreateForProfile(Profile* profile,
46 return GetInstance()->CreateForProfileInternal(profile, force_immediate_load);
50 Profile* profile,
52 ProfilePolicyConnector*& map_entry = connectors_[profile];
146 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_video_encoder_factory.cc 22 const media::VideoEncodeAccelerator::SupportedProfile& profile) {
23 int width = profile.max_resolution.width();
24 int height = profile.max_resolution.height();
25 int fps = profile.max_framerate_numerator;
26 DCHECK_EQ(profile.max_framerate_denominator, 1U);
29 if (profile.profile >= media::VP8PROFILE_MIN &&
30 profile.profile <= media::VP8PROFILE_MAX) {
35 } else if (profile.profile >= media::H264PROFILE_MIN &
    [all...]

Completed in 1145 milliseconds

<<11121314151617181920>>