HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 1101 - 1125 of 8345) sorted by null

<<41424344454647484950>>

  /external/chromium_org/chrome/browser/sync/test/integration/
typed_urls_helper.h 19 // Gets the typed URLs from a specific sync profile.
22 // Gets a specific url from a specific sync profile. Returns false if the URL
26 // Gets the visits for a URL from a specific sync profile.
29 // Removes the passed |visits| from a specific sync profile.
32 // Adds a URL to the history DB for a specific sync profile (just registers a
36 // Adds a URL to the history DB for a specific sync profile (just registers a
43 // Adds a URL to the history DB for a specific sync profile (just registers a
52 // Deletes a URL from the history DB for a specific sync profile.
56 // profile.
59 // Returns true if all clients match the verifier profile
    [all...]
  /external/chromium_org/chrome/browser/ui/
auto_login_prompter.cc 12 #include "chrome/browser/profiles/profile.h"
32 bool FetchUsernameThroughSigninManager(Profile* profile, std::string* output) {
35 SigninManagerFactory::GetInstance()->GetForProfile(profile);
40 ProfileOAuth2TokenServiceFactory::GetForProfile(profile);
103 Profile* profile =
104 Profile::FromBrowserContext(web_contents->GetBrowserContext());
106 if (!profile->GetPrefs()->GetBoolean(prefs::kAutologinEnabled))
112 if (!FetchUsernameThroughSigninManager(profile, &params.username)
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_tab_helper.cc 11 #include "chrome/browser/profiles/profile.h"
63 Profile* profile =
64 Profile::FromBrowserContext(web_contents()->GetBrowserContext());
67 if (profile->IsGuestSession())
71 PrefService* prefs = profile->GetPrefs();
85 Profile* profile = local
86 Profile::FromBrowserContext(web_contents->GetBrowserContext());
87 bookmark_model_= BookmarkModelFactory::GetForProfile(profile);
    [all...]
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_interactive_uitest.cc 34 Profile* profile_1 = profile_manager->GetProfile(
36 "New Profile 1")));
38 Profile* profile_2 = profile_manager->GetProfile(
40 "New Profile 2")));
42 Profile* profile_3 = profile_manager->GetProfile(
44 "New Profile 3")));
46 Profile* profile_4 = profile_manager->GetProfile(
48 "New Profile 4")));
65 std::vector<Profile*> last_opened_profiles;
78 // The last used profile (the profile_2 in this case) must be active
    [all...]
  /external/chromium_org/chrome/test/base/
testing_profile_manager.h 25 // The TestingProfileManager is a TestingProfile factory for a multi-profile
29 // When a Profile is needed for testing, create it through the factory method
45 // |prefs| is the PrefService used by the profile. If it is NULL, the profile
48 // ProfileInfoCache and provide the user-visible profile metadata. This will
49 // register the TestingProfile with the profile subsystem as well. The
50 // subsystem owns the Profile and returns a weak pointer.
51 // |factories| contains BCKSs to use with the newly created profile.
63 // Deletes a TestingProfile from the profile subsystem.
98 // Weak reference to the profile manager
    [all...]
  /external/chromium/chrome/browser/content_settings/
host_content_settings_map_unittest.cc 46 TestingProfile profile; local
48 profile.GetHostContentSettingsMap();
177 TestingProfile profile; local
179 profile.GetHostContentSettingsMap();
208 TestingProfile profile; local
210 profile.GetHostContentSettingsMap();
244 TestingProfile profile; local
246 profile.GetHostContentSettingsMap();
248 PrefService* prefs = profile.GetPrefs();
280 TestingProfile profile; local
317 TestingProfile profile; local
396 TestingProfile profile; local
449 TestingProfile profile; local
496 TestingProfile profile; local
521 TestingProfile profile; local
547 TestingProfile profile; local
580 TestingProfile profile; local
603 TestingProfile profile; local
630 TestingProfile profile; local
666 TestingProfile profile; local
704 TestingProfile profile; local
742 TestingProfile profile; local
773 TestingProfile profile; local
812 TestingProfile profile; local
842 TestingProfile profile; local
866 TestingProfile profile; local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_devtools_manager.h 18 class Profile;
21 // The manager is owned by the Profile.
38 explicit ExtensionDevToolsManager(Profile* profile);
60 Profile* profile_;
extension_event_router.cc 14 #include "chrome/browser/profiles/profile.h"
65 bool ExtensionEventRouter::CanCrossIncognito(Profile* profile,
68 profile->GetExtensionService()->GetExtensionById(extension_id, false);
69 return CanCrossIncognito(profile, extension);
73 bool ExtensionEventRouter::CanCrossIncognito(Profile* profile,
75 // We allow the extension to see events and data from another profile iff it
77 // extensions only see events for a matching profile.
79 (profile->GetExtensionService()->IsIncognitoEnabled(extension->id()) &
    [all...]
file_manager_util.h 13 class Profile;
22 static bool ConvertFileToFileSystemUrl(Profile* profile,
35 static void ShowFullTabUrl(Profile* profile,
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store.h 20 class Profile;
53 Profile* profile);
62 Profile* profile);
  /external/chromium/chrome/browser/
spellcheck_host.cc 9 #include "chrome/browser/profiles/profile.h"
33 Profile* profile,
37 accept_languages_pref.Init(prefs::kAcceptLanguages, profile->GetPrefs(),
40 profile->GetPrefs(), NULL);
  /external/chromium/chrome/browser/ui/gtk/
content_setting_bubble_gtk.h 19 class Profile;
33 Profile* profile, TabContents* tab_contents);
66 // The active profile.
67 Profile* profile_;
edit_search_engine_dialog.h 19 class Profile;
27 Profile* profile);
32 void Init(GtkWindow* parent_window, Profile* profile);
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.h 16 class Profile;
23 explicit KeywordEditorController(Profile* profile);
71 // The profile.
72 Profile* profile_;
  /external/chromium/chrome/browser/ui/views/
dom_view.h 17 class Profile;
31 bool Init(Profile* profile, SiteInstance* instance);
53 virtual TabContents* CreateTabContents(Profile* profile,
  /external/chromium/chrome/browser/ui/webui/
thumbnail_source.cc 9 #include "chrome/browser/profiles/profile.h"
15 ThumbnailSource::ThumbnailSource(Profile* profile)
17 // Set TopSites now as Profile isn't thread safe.
18 top_sites_(profile->GetTopSites()) {
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data.cc 15 #include "chrome/browser/profiles/profile.h"
218 void BookmarkNodeData::WriteToPickle(Profile* profile, Pickle* pickle) const {
219 base::FilePath path = profile ? profile->GetPath() : base::FilePath();
246 Profile* profile) const {
249 if (!IsFromProfile(profile))
254 profile)->GetNodeByID(elements[i].id_);
264 const BookmarkNode* BookmarkNodeData::GetFirstNode(Profile* profile) const
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_browser_handlers.h 21 class Profile;
49 Profile* profile,
57 Profile* profile,
  /external/chromium_org/chrome/browser/chromeos/login/
multi_profile_user_controller.h 16 class Profile;
43 // Starts to observe the multiprofile user behavior pref of the given profile.
44 void StartObserving(Profile* user_profile);
66 void OnUserPrefChanged(Profile* profile);
user_flow.h 11 #include "chrome/browser/profiles/profile.h"
28 virtual void LaunchExtraSteps(Profile* profile) = 0;
54 virtual void LaunchExtraSteps(Profile* profile) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/feedback_private/
feedback_service_nonchromeos.cc 10 #include "chrome/browser/profiles/profile.h"
57 Profile* profile = ProfileManager::GetLastUsedProfile(); local
58 if (!profile)
61 SigninManager* signin = SigninManagerFactory::GetForProfile(profile);
  /external/chromium_org/chrome/browser/extensions/api/system_indicator/
system_indicator_manager.h 20 class Profile;
29 // Keeps track of all the systemIndicator icons created for a given Profile
35 SystemIndicatorManager(Profile* profile, StatusTray* status_tray);
69 Profile* profile_;
  /external/chromium_org/chrome/browser/extensions/
chrome_extension_function.h 11 class Profile;
22 // the a chrome Profile.
27 Profile* GetProfile() const;
29 // Returns true if this function (and the profile and extension that it was
66 // the a chrome Profile.
permissions_updater.h 12 class Profile;
28 explicit PermissionsUpdater(Profile* profile);
70 // Gets the ExtensionPrefs for the associated profile.
73 Profile* profile_;
webstore_startup_installer.cc 7 #include "chrome/browser/profiles/profile.h"
16 Profile* profile,
21 profile,
25 WebContents::Create(WebContents::CreateParams(profile))) {

Completed in 470 milliseconds

<<41424344454647484950>>