HomeSort by relevance Sort by last modified time
    Searched refs:Profile (Results 101 - 125 of 3175) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/android/autofill/
profile_android.cc 30 // We only need the Profile constructor (but that is needed since
31 // ProfileImplAndroid is a subclass of Profile). To avoid compiling the file,
34 // Taken from chrome/browser/profiles/profile.cc
35 Profile::Profile()
49 Profile* ProfileImplAndroid::GetOriginalProfile()
74 Profile* Profile::CreateProfile(const FilePath& path) {
  /external/chromium/chrome/browser/sessions/
session_restore.h 16 class Profile;
33 static void RestoreSession(Profile* profile,
42 Profile* profile,
48 static void RestoreForeignSessionTab(Profile* profile,
59 Profile* profile,
  /external/chromium/chrome/browser/sync/glue/
theme_util.h 10 class Profile;
34 Profile* profile);
39 Profile* profile,
52 const sync_pb::ThemeSpecifics& theme_specifics, Profile* profile);
55 // |theme_specifics| uses the default theme and |profile| does not, the local
59 Profile* profile, sync_pb::ThemeSpecifics* theme_specifics)
    [all...]
  /external/chromium/chrome/browser/ui/webui/
chrome_web_ui_factory.h 17 class Profile;
23 virtual WebUI::TypeID GetWebUIType(Profile* profile, const GURL& url) const;
24 virtual bool UseWebUIForURL(Profile* profile, const GURL& url) const;
26 virtual bool IsURLAcceptableForWebUI(Profile* profile, const GURL& url) const;
32 void GetFaviconForURL(Profile* profile,
  /external/chromium_org/chrome/browser/notifications/
notification_ui_manager.h 17 class Profile;
20 // notifications. There is one instance per profile.
29 virtual void Add(const Notification& notification, Profile* profile) = 0;
33 virtual bool Update(const Notification& notification, Profile* profile) = 0;
47 Profile* profile,
54 // Removes notifications matching |profile|. Returns true if any were removed.
55 virtual bool CancelAllByProfile(Profile* profile) = 0
    [all...]
  /external/chromium_org/chrome/browser/signin/
signin_manager_factory.h 14 class Profile;
17 // Profiles. Listens for the Profile's destruction notification and cleans up
23 // Returns the instance of SigninManager associated with this profile
24 // (creating one if none exists). Returns NULL if this profile cannot have a
25 // SigninManager (for example, if |profile| is incognito).
26 static SigninManagerBase* GetForProfile(Profile* profile);
28 // Returns the instance of SigninManager associated with this profile. Returns
31 static SigninManagerBase* GetForProfileIfExists(Profile* profile);
    [all...]
signin_tracker.h 13 class Profile;
67 // |profile|, and notifies the |observer| on status changes. |observer| must
69 SigninTracker(Profile* profile, Observer* observer);
78 static bool AreServiceTokensLoaded(Profile* profile);
80 // Returns the sign in state for |profile|. If the profile is not signed in,
84 static LoginState GetSigninState(Profile* profile,
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
OmniboxPrerender.java 7 import org.chromium.chrome.browser.profiles.Profile;
32 * @param profile profile instance corresponding to the active profile.
34 public void clear(Profile profile) {
35 nativeClear(mNativeOmniboxPrerender, profile);
39 * Initializes the underlying action predictor for a given profile instance. This should be
43 * @param profile profile instance corresponding to active profile
    [all...]
  /external/chromium_org/chrome/browser/extensions/
lazy_background_task_queue.h 17 class Profile;
33 explicit LazyBackgroundTaskQueue(Profile* profile);
40 bool ShouldEnqueueTask(Profile* profile, const Extension* extension);
48 Profile* profile,
53 // A map between an extension_id,Profile pair and the queue of tasks pending
56 typedef std::pair<Profile*, ExtensionID> PendingTasksKey;
70 Profile* profile
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_service.h 17 class Profile;
33 static void InitAll(Profile* initial_profile);
47 // Show the app list for the profile configured in the user data dir for the
52 virtual void CreateForProfile(Profile* requested_profile) = 0;
54 // Show the app list for the given profile. If it differs from the profile the
56 // profile to local prefs as the default app list profile.
57 virtual void ShowForProfile(Profile* requested_profile) = 0;
62 // Get the profile the app list is currently showing
    [all...]
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_manager.h 21 class Profile;
41 // Adds or removes an observer for changes to |profile|'s contacts.
43 Profile* profile) = 0;
45 Profile* profile) = 0;
47 // Returns pointers to all currently-loaded contacts for |profile|. The
50 virtual scoped_ptr<ContactPointers> GetAllContacts(Profile* profile) = 0;
54 virtual const Contact* GetContactById(Profile* profile
    [all...]
contact_manager_stub.h 18 explicit ContactManagerStub(Profile* profile);
29 virtual void AddObserver(ContactManagerObserver* observer, Profile* profile)
32 Profile* profile) OVERRIDE;
33 virtual scoped_ptr<ContactPointers> GetAllContacts(Profile* profile) OVERRIDE;
34 virtual const Contact* GetContactById(Profile* profile,
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.h 18 class Profile;
34 // Installs the extension with the given name to |profile|, and returns the
36 std::string InstallExtension(Profile* profile,
40 // Uninstalls the extension with the given name from |profile|.
41 void UninstallExtension(Profile* profile, const std::string& name);
44 // on |profile|.
45 std::vector<std::string> GetInstalledExtensionNames(Profile* profile) const
    [all...]
themes_helper.cc 26 ThemeService* GetThemeService(Profile* profile) {
27 return ThemeServiceFactory::GetForProfile(profile);
38 std::string GetThemeID(Profile* profile) {
39 return GetThemeService(profile)->GetThemeID();
42 bool UsingCustomTheme(Profile* profile) {
43 return GetThemeID(profile) != ThemeService::kDefaultThemeID;
46 bool UsingDefaultTheme(Profile* profile)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service_factory.cc 17 Profile* profile, Profile::ServiceAccessType sat) {
19 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) &&
20 sat != Profile::EXPLICIT_ACCESS)
24 GetInstance()->GetServiceForBrowserContext(profile, true));
30 Profile* profile, Profile::ServiceAccessType sat) {
32 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) &
70 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_manager.h 21 #include "chrome/browser/profiles/profile.h"
33 public Profile::Delegate {
35 typedef base::Callback<void(Profile*, Profile::CreateStatus)> CreateCallback;
45 // Physically remove deleted profile directories from disk.
51 // Returns the default profile. This adds the profile to the
53 // the profile doesn't exist and we can't create it.
54 // The profile used can be overridden by using --login-profile on cros
239 scoped_ptr<Profile> profile; member in struct:ProfileManager::ProfileInfo
    [all...]
profile_destroyer.h 15 class Profile;
20 // We use this class to destroy the off the record profile so that we can make
25 static void DestroyProfileWhenAppropriate(Profile* const profile);
26 static void DestroyOffTheRecordProfileNow(Profile* const profile);
32 Profile* const profile,
43 // Fetch the list of render process hosts that still refer to the profile.
46 Profile* const profile
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
login_utils.h 14 class Profile;
29 // Called after profile is loaded and prepared for the session.
30 virtual void OnProfilePrepared(Profile* profile) = 0;
33 // Called after post-profile RLZ initialization.
34 virtual void OnRlzInitialized(Profile* profile) {}
59 virtual void DoBrowserLaunch(Profile* profile,
62 // Loads and prepares profile for the session. Fires |delegate| in the end
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_manager_factory_chromeos.h 14 class Profile;
25 // for UserCloudPolicyManagerChromeOS instances that initialize per-profile
30 // Therefore, lifetime of instances is managed by Profile, Profile startup code
45 // |profile|.
46 static UserCloudPolicyManagerChromeOS* GetForProfile(Profile* profile);
48 // Creates an instance for |profile|. Note that the caller is responsible for
55 Profile* profile,
    [all...]
  /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/ui/extensions/
application_launch.h 16 class Profile;
29 AppLaunchParams(Profile* profile,
37 AppLaunchParams(Profile* profile,
43 AppLaunchParams(Profile* profile,
47 // The profile to load the application from.
48 Profile* profile; member in struct:chrome::AppLaunchParams
    [all...]
  /external/chromium/chrome/browser/extensions/
external_policy_extension_loader.h 17 class Profile;
26 explicit ExternalPolicyExtensionLoader(Profile* profile);
44 Profile* profile_;
  /external/chromium/chrome/browser/ui/
browser_dialogs.h 15 class Profile;
30 // Creates and shows an HTML dialog with the given delegate and profile.
36 gfx::NativeWindow ShowHtmlDialog(gfx::NativeWindow parent, Profile* profile,
46 Profile* profile);
  /external/chromium/chrome/browser/ui/cocoa/
html_dialog_window_controller.h 16 class Profile;
30 // delegate and profile. The window is automatically destroyed when
36 profile:(Profile*)profile;
45 profile:(Profile*)profile;
  /external/chromium/chrome/browser/ui/views/
instant_confirm_view.h 14 class Profile;
21 explicit InstantConfirmView(Profile* profile);
36 Profile* profile_;

Completed in 1213 milliseconds

1 2 3 45 6 7 8 91011>>