HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 526 - 550 of 4127) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.h 15 class Profile;
38 // Returns the ProfilePolicyConnector associated with |profile|. This is only
39 // valid before |profile| is shut down.
40 static ProfilePolicyConnector* GetForProfile(Profile* profile);
42 // Creates a new ProfilePolicyConnector for |profile|, which must be managed
48 Profile* profile,
52 // Overrides the |connector| for the given |profile|; use only in tests.
55 void SetServiceForTesting(Profile* profile
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_loader.cc 33 base::Callback<void(Profile*)> callback) {
36 Profile* profile = GetProfileByPath(profile_file_path); local
37 if (profile) {
38 callback.Run(profile);
52 Profile* ProfileLoader::GetProfileByPath(const base::FilePath& path) {
67 base::Callback<void(Profile*)> callback,
68 Profile* profile,
69 Profile::CreateStatus status)
    [all...]
  /external/chromium_org/chrome/browser/signin/
fake_signin_manager.cc 10 #include "chrome/browser/profiles/profile.h"
29 content::BrowserContext* profile) {
35 FakeSigninManager::FakeSigninManager(Profile* profile)
37 new ChromeSigninManagerDelegate(profile))) {
75 content::Source<Profile>(profile_),
81 content::BrowserContext* profile) {
82 return new FakeSigninManager(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/sync/test/integration/
bookmarks_helper.cc 24 #include "chrome/browser/profiles/profile.h"
213 // Sets the favicon for |profile| and |node|. |profile| may be
215 void SetFaviconImpl(Profile* profile,
220 BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile);
224 FaviconServiceFactory::GetForProfile(profile,
225 Profile::EXPLICIT_ACCESS);
233 node, profile, icon_url, image.As1xPNGBytes());
251 std::vector<Profile*> profiles_which_need_to_wait
258 Profile* profile = profiles_which_need_to_wait[i]; local
433 << profile; local
475 << profile; local
    [all...]
sync_extension_helper.cc 15 #include "chrome/browser/profiles/profile.h"
62 Profile* profile, const std::string& name, Manifest::Type type) {
63 scoped_refptr<Extension> extension = GetExtension(profile, name, type);
68 profile->GetExtensionService()
78 Profile* profile, const std::string& name) {
80 profile->GetExtensionService(),
85 Profile* profile) const
    [all...]
  /external/chromium/chrome/browser/profiles/
profile_io_data.cc 27 #include "chrome/browser/profiles/profile.h"
46 explicit ChromeCookieMonsterDelegate(Profile* profile) {
48 profile_getter_ = new ProfileGetter(profile);
66 // This class allows us to safely access the Profile pointer. The Delegate
76 explicit ProfileGetter(Profile* profile) : profile_(profile) {
80 Source<Profile>(profile_));
89 Profile* profile = Source<Profile>(source).ptr() local
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data_unittest.cc 72 TestingProfile profile; local
73 profile.SetID(L"id");
74 profile.CreateBookmarkModel(false);
75 BookmarkModel* model = BookmarkModelFactory::GetForProfile(&profile);
88 drag_data.Write(&profile, &data);
99 EXPECT_TRUE(read_data.GetFirstNode(&profile) == node);
101 // Make sure asking for the node with a different profile returns NULL.
115 TestingProfile profile; local
116 profile.SetID(L"id");
117 profile.CreateBookmarkModel(false)
156 TestingProfile profile; local
197 TestingProfile profile; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
autofill_options_handler.cc 17 #include "chrome/browser/profiles/profile.h"
94 void GetValueList(const AutofillProfile& profile,
98 profile.GetMultiInfo(type, &values);
108 AutofillProfile* profile) {
115 profile->SetMultiInfo(type, values);
313 AutofillProfile* profile = personal_data_->GetProfileByGUID(guid); local
314 if (!profile) {
318 // removed). This will activate the editor for a profile that has been
324 address.SetString("guid", profile->guid());
326 GetValueList(*profile, NAME_FULL, &list)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_omnibox_api.cc 14 #include "chrome/browser/profiles/profile.h"
49 Profile* profile, const std::string& extension_id) {
51 profile->GetExtensionService()->GetExtensionById(extension_id, false);
55 profile->GetExtensionService()->GetPropertyBag(extension));
62 Profile* profile, const std::string& extension_id) {
63 profile->GetExtensionEventRouter()->DispatchEventToExtension(
64 extension_id, events::kOnInputStarted, "[]", profile, GURL());
69 Profile* profile, const std::string& extension_id
    [all...]
  /external/chromium_org/chromeos/dbus/
shill_profile_client_stub.cc 40 const char ShillProfileClientStub::kSharedProfilePath[] = "/profile/default";
64 ProfileProperties* profile = GetProfile(profile_path, error_callback); local
65 if (!profile)
68 scoped_ptr<base::DictionaryValue> properties(profile->properties.DeepCopy());
71 for (base::DictionaryValue::Iterator it(profile->entries); !it.IsAtEnd();
86 ProfileProperties* profile = GetProfile(profile_path, error_callback); local
87 if (!profile)
91 profile->entries.GetDictionaryWithoutPathExpansion(entry_path, &entry);
93 error_callback.Run("Error.InvalidProfileEntry", "Invalid profile entry");
106 ProfileProperties* profile = GetProfile(profile_path, error_callback) local
144 ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path), local
155 ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path), local
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_common_test.h 11 class Profile;
28 // tests. |SetProfileInfo| provides a quick way to populate a profile with
30 void SetProfileInfo(AutofillProfile* profile,
37 void SetProfileInfoWithGuid(AutofillProfile* profile,
54 void DisableSystemServices(Profile* profile);
  /external/chromium/chrome/browser/automation/
automation_extension_tracker.cc 7 #include "chrome/browser/profiles/profile.h"
34 Profile* profile = Source<Profile>(source).ptr(); local
35 if (profile) {
36 ExtensionService* service = profile->GetExtensionService();
  /external/chromium/chrome/browser/chromeos/login/
cookie_fetcher.h 16 class Profile;
27 // |profile| is the Profile whose cookie jar you want the cookies in.
28 explicit CookieFetcher(Profile* profile);
30 // |profile| is the Profile whose cookie jar you want the cookies in.
32 CookieFetcher(Profile* profile,
35 : profile_(profile),
    [all...]
  /external/chromium/chrome/browser/
renderer_preferences_util.cc 8 #include "chrome/browser/profiles/profile.h"
18 void UpdateFromSystemSettings(RendererPreferences* prefs, Profile* profile) {
23 GtkThemeService* theme_service = GtkThemeService::GetFrom(profile);
48 profile->GetPrefs()->GetBoolean(prefs::kEnableReferrers);
  /external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.cc 7 #include "chrome/browser/profiles/profile.h"
27 KeyboardContainerView::KeyboardContainerView(Profile* profile)
30 dom_view_->Init(profile,
31 SiteInstance::CreateSiteInstanceForURL(profile, keyboard_url));
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_drag_data.h 12 #include "chrome/browser/profiles/profile.h"
31 // Returns true if this data is from the specified profile.
32 bool IsFromProfile(Profile* profile) const;
35 void Write(Profile* profile, ui::OSExchangeData* data) const;
45 void WriteToPickle(Profile* profile, Pickle* pickle) const;
48 // ID of the profile we originated from.
  /external/chromium/chrome/browser/ui/views/location_bar/
keyword_hint_view.h 17 class Profile;
32 explicit KeywordHintView(Profile* profile);
48 void set_profile(Profile* profile) { profile_ = profile; }
57 Profile* profile_;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/favicon/
FaviconHelper.java 10 import org.chromium.chrome.browser.profiles.Profile;
68 * @param profile Profile used for the FaviconService construction.
78 Profile profile, String pageUrl, int iconTypes,
81 return nativeGetFaviconImageForURL(mNativeFaviconHelper, profile, pageUrl, iconTypes,
88 Profile profile, String pageUrl, int iconTypes, int desiredSizeInDip,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_update_service.h 19 class Profile;
33 Profile* profile,
57 Profile* profile_;
72 // Returns the KioskAppUpdateService for |profile|, creating it if it is not
74 static KioskAppUpdateService* GetForProfile(Profile* profile);
87 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/chromeos/power/
suspend_observer.cc 12 #include "chrome/browser/profiles/profile.h"
38 Profile* profile = ProfileManager::GetDefaultProfileOrOffTheRecord(); local
39 if (profile && profile->GetPrefs()->GetBoolean(prefs::kEnableScreenLock) &&
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_helper.h 17 class Profile;
22 // active user profile.
27 // 1. Get "signin profile" which is a special type of profile that is only used
29 // 2. Get profile dir of an active user, used by ProfileManager:
31 // 3. Get mapping from user_id_hash to Profile instance/profile path etc.
39 // Returns Profile instance that corresponds to |user_id_hash|.
40 static Profile* GetProfileByUserIdHash(const std::string& user_id_hash);
42 // Returns profile path that corresponds to a given |user_id_hash|
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/feedback_private/
feedback_service_nonchromeos.cc 9 #include "chrome/browser/profiles/profile.h"
47 Profile* profile = ProfileManager::GetLastUsedProfile(); local
48 if (!profile)
51 SigninManager* signin = SigninManagerFactory::GetForProfile(profile);
  /external/chromium_org/chrome/browser/extensions/api/module/
module.cc 13 #include "chrome/browser/profiles/profile.h"
41 ExtensionPrefs::Get(profile())->UpdateExtensionPref(
50 ExtensionSystem::Get(profile())->extension_service();
60 ExtensionSystem::Get(profile())->extension_service();
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_frontend.h 20 class Profile;
31 static SettingsFrontend* Create(Profile* profile);
36 Profile* profile);
68 Profile* profile);
75 // The (non-incognito) Profile this Frontend belongs to.
76 Profile* const profile_;
  /external/chromium_org/chrome/browser/extensions/
startup_helper.h 12 class Profile;
39 // specified extension from |profile|. Returns false if the uninstall job
41 bool UninstallExtension(const CommandLine& cmd_line, Profile* profile);
46 bool InstallFromWebstore(const CommandLine& cmd_line, Profile* profile);
54 void LimitedInstallFromWebstore(const CommandLine& cmd_line, Profile* profile,

Completed in 2609 milliseconds

<<21222324252627282930>>