HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 301 - 325 of 7858) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/ui/cocoa/
first_run_bubble_controller.h 10 class Profile;
17 Profile* profile_;
24 profile:(Profile*)profile;
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service_factory.h 14 class Profile;
17 // Profiles. Listens for the Profile's destruction notification and cleans up
21 static GlobalErrorService* GetForProfile(Profile* profile);
33 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/ntp/
app_resource_cache_factory.h 12 class Profile;
15 // associates them with Profiles. Listens for the Profile's destruction
19 static NTPResourceCache* GetForProfile(Profile* profile);
31 content::BrowserContext* profile) const OVERRIDE;
ntp_resource_cache_factory.h 12 class Profile;
15 // with Profiles. Listens for the Profile's destruction notification and cleans
19 static NTPResourceCache* GetForProfile(Profile* profile);
31 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_drag_data.cc 10 #include "chrome/browser/profiles/profile.h"
24 bool BrowserActionDragData::IsFromProfile(Profile* profile) const {
25 return (profile_id_ == profile->GetRuntimeId());
30 Profile* profile, ui::OSExchangeData* data) const {
33 WriteToPickle(profile, &data_pickle);
67 Profile* profile, Pickle* pickle) const {
68 ProfileId profile_id = profile->GetRuntimeId()
    [all...]
  /external/chromium/chrome/browser/ui/webui/
html_dialog_tab_contents_delegate.h 12 class Profile;
21 // Profile must be non-NULL.
22 explicit HtmlDialogTabContentsDelegate(Profile* profile);
26 // The returned profile is guaranteed to be original if non-NULL.
27 Profile* profile() const;
31 // calls to profile() return NULL.
60 Profile* profile_; // Weak pointer. Always an original profile
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_factory.cc 9 #include "chrome/browser/profiles/profile.h"
25 Profile* profile) {
27 GetInstance()->GetServiceForBrowserContext(profile, true));
53 Profile* profile = static_cast<Profile*>(context); local
55 SyncFileSystemService* service = new SyncFileSystemService(profile);
58 new LocalFileSyncService(profile));
68 DriveFileSyncService::Create(profile).PassAs<RemoteFileSyncService>()
    [all...]
  /external/chromium/chrome/browser/
background_contents_service.cc 21 #include "chrome/browser/profiles/profile.h"
51 CrashNotificationDelegate(Profile* profile, const Extension* extension)
52 : profile_(profile),
84 Profile* profile_;
91 void ShowBalloon(const Extension* extension, Profile* profile) {
102 new CrashNotificationDelegate(profile, extension));
103 g_browser_process->notification_ui_manager()->Add(notification, profile);
124 Profile* profile, const CommandLine* command_line
222 Profile* profile = Source<Profile>(source).ptr(); local
237 Profile* profile = Source<Profile>(source).ptr(); local
260 Profile* profile = Source<Profile>(source).ptr(); local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
theme_util.cc 17 #include "chrome/browser/profiles/profile.h"
39 bool UseSystemTheme(Profile* profile) {
41 return GtkThemeService::GetFrom(profile)->UseGtkTheme();
88 Profile* profile) {
89 DCHECK(profile);
97 profile->GetExtensionService();
113 ThemeServiceFactory::GetThemeForProfile(profile);
119 bool previous_use_system_theme = UseSystemTheme(profile);
    [all...]
  /external/chromium_org/chrome/browser/extensions/
lazy_background_task_queue.cc 14 #include "chrome/browser/profiles/profile.h"
27 LazyBackgroundTaskQueue::LazyBackgroundTaskQueue(Profile* profile)
28 : profile_(profile) {
34 content::Source<Profile>(profile));
41 Profile* profile, const Extension* extension) {
44 ExtensionProcessManager* pm = ExtensionSystem::Get(profile)->
58 Profile* profile
142 Profile* profile = content::Source<Profile>(source).ptr(); local
152 Profile* profile = content::Source<Profile>(source).ptr(); local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.cc 10 #include "chrome/browser/profiles/profile.h"
54 // Returns a map from |profile|'s installed extensions to their state.
55 AppStateMap GetAppStates(Profile* profile) {
58 ExtensionService* extension_service = profile->GetExtensionService();
106 bool SyncAppHelper::AppStatesMatch(Profile* profile1, Profile* profile2) {
114 DVLOG(2) << "Number of Apps for profile " << profile1->GetDebugName()
115 << " does not match profile " << profile2->GetDebugName();
123 DVLOG(2) << "Apps for profile " << profile1->GetDebugName(
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_common_test.cc 73 FormGroup* profile, ServerFieldType type, const char* value) {
75 profile->SetRawInfo(type, UTF8ToUTF16(value));
79 AutofillProfile profile(base::GenerateGUID(), "http://www.example.com/");
80 SetProfileInfo(&profile,
92 return profile;
96 AutofillProfile profile(base::GenerateGUID(), "https://www.example.com/");
97 SetProfileInfo(&profile,
109 return profile;
113 AutofillProfile profile(GetFullProfile());
114 profile.set_origin(kSettingsOrigin)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java 130 // Add a preference for each profile
178 for (LocalBluetoothProfile profile : mCachedDevice.getConnectableProfiles()) {
179 Preference pref = createProfilePreference(profile);
197 * Creates a checkbox preference for the particular profile. The key will be
198 * the profile's name.
200 * @param profile The profile for which the preference controls.
201 * @return A preference that allows the user to choose whether this profile
204 private CheckBoxPreference createProfilePreference(LocalBluetoothProfile profile) {
206 pref.setKey(profile.toString())
261 askDisconnect(getActivity(), profile); local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sessions_sync_perf_test.cc 28 // Opens |num_tabs| new tabs on |profile|.
29 void AddTabs(int profile, int num_tabs);
31 // Update all tabs in |profile| by visiting a new URL.
32 void UpdateTabs(int profile);
34 // Close all tabs in |profile|.
35 void RemoveTabs(int profile);
38 // |profile|. Returns -1 on failure.
39 int GetTabCount(int profile);
52 void SessionsSyncPerfTest::AddTabs(int profile, int num_tabs) {
57 OpenMultipleTabs(profile, urls)
    [all...]
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...]
typed_urls_sync_perf_test.cc 38 // Adds |num_urls| new unique typed urls to |profile|.
39 void AddURLs(int profile, int num_urls);
41 // Update all typed urls in |profile| by visiting them once again.
42 void UpdateURLs(int profile);
44 // Removes all typed urls for |profile|.
45 void RemoveURLs(int profile);
47 // Returns the number of typed urls stored in |profile|.
48 int GetURLCount(int profile);
61 void TypedUrlsSyncPerfTest::AddURLs(int profile, int num_urls) {
63 AddUrlToHistory(profile, NextURL())
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile.h 5 // This class gathers state related to a single user profile.
71 // Instead of adding more members to Profile, consider creating a
73 // http://dev.chromium.org/developers/design-documents/profile-architecture
74 class Profile : public content::BrowserContext {
76 // Profile services are accessed with the following parameter. This parameter
79 // result in persistent implicit records while using an OffTheRecord profile.
80 // This flag allows the profile to perform an additional check.
95 // in the profile, as part of Chrome's implicit data logging. Use this flag
102 // Profile services were not created due to a local error (e.g., disk full).
104 // Profile services were not created due to a remote error (e.g., networ
    [all...]
profile_loader_unittest.cc 13 #include "chrome/browser/profiles/profile.h"
32 MOCK_METHOD1(GetProfileByPath, Profile*(const base::FilePath&));
45 Profile* profile,
46 Profile::CreateStatus status) {
47 callbacks_[path].Run(profile, status);
59 MOCK_METHOD1(Run, void(Profile*));
73 TestingProfile profile; local
75 base::FilePath::FromUTF8Unsafe("fake/profile 1");
77 base::FilePath::FromUTF8Unsafe("fake/profile 2")
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_web_ui.h 21 class Profile;
60 static bool HandleChromeURLOverride(GURL* url, Profile* profile);
65 static void RegisterChromeURLOverrides(Profile* profile,
67 static void UnregisterChromeURLOverrides(Profile* profile,
70 Profile* profile,
77 static void GetFaviconForURL(Profile* profile
    [all...]
  /external/chromium_org/apps/
app_lifetime_monitor.h 21 class Profile;
34 virtual void OnAppStart(Profile* profile, const std::string& app_id) = 0;
36 virtual void OnAppActivated(Profile* profile,
39 virtual void OnAppDeactivated(Profile* profile,
42 virtual void OnAppStop(Profile* profile, const std::string& app_id) = 0;
45 // so there is no associated profile and app id
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
MostVisitedSites.java 15 private Profile mProfile;
44 * MostVisitedSites constructor requires a valid user profile object.
46 * @param profile A valid user profile object.
48 public MostVisitedSites(Profile profile) {
49 mProfile = profile;
81 Profile profile, MostVisitedURLsCallback callback, int numResults);
83 Profile profile, String url, ThumbnailCallback callback)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/runtime/
runtime_api.h 15 class Profile;
28 static void DispatchOnStartupEvent(Profile* profile,
32 static void DispatchOnInstalledEvent(Profile* profile,
39 Profile* profile,
44 static void DispatchOnBrowserUpdateAvailableEvent(Profile* profile);
48 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/chromeos/dbus/
bluetooth_profile_manager_client.h 23 // BluetoothProfileManagerClient is used to communicate with the profile
27 // Species the role of the object within the profile. SYMMETRIC should be
28 // usually used unless the profile requires you specify as a CLIENT or as a
36 // Options used to register a Profile object.
41 // Human readable name for the profile.
68 // Profile version.
71 // Profile features.
83 // Registers a profile implementation within the local process at the
84 // D-bus object path |profile_path| with the remote profile manager.
85 // |uuid| specifies the identifier of the profile and |options| the way i
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_extension_loader_chromeos.cc 14 #include "chrome/browser/profiles/profile.h"
23 // Factory to load one instance of TtsExtensionLoaderChromeOs per profile.
27 static TtsExtensionLoaderChromeOs* GetForProfile(Profile* profile) {
29 GetInstance()->GetServiceForBrowserContext(profile, true));
48 // If given an incognito profile (including the Chrome OS login
49 // profile), share the service with the original profile.
54 content::BrowserContext* profile) const OVERRIDE {
55 return new TtsExtensionLoaderChromeOs(static_cast<Profile*>(profile))
    [all...]

Completed in 3015 milliseconds

<<11121314151617181920>>