HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 51 - 75 of 3371) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_name_folder_controller.mm 10 #include "chrome/browser/profiles/profile.h"
19 profile:(Profile*)profile
28 profile_ = profile;
47 profile:(Profile*)profile
51 profile:profile
    [all...]
  /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/policy/
profile_policy_connector.h 14 class Profile;
21 // This class is a container for the profile-specific policy bits located in the
22 // profile. Since the subsystem owns the policy provider, it's vital that it
23 // gets initialized before the profile's prefs and destroyed after the prefs
27 explicit ProfilePolicyConnector(Profile* profile);
30 // Initializes the context. Should be called only after the profile's request
35 // infrastructure in the profile goes away.
42 Profile* profile_;
58 // profile policies
    [all...]
  /external/chromium/chrome/browser/tab_contents/
background_contents.cc 9 #include "chrome/browser/profiles/profile.h"
30 Profile* profile = site_instance->browsing_instance()->profile(); local
39 // Register for our parent profile to shutdown, so we can shut ourselves down
43 Source<Profile>(profile));
55 Profile* profile = render_view_host_->process()->profile();
99 Profile* profile = render_view_host->process()->profile(); local
162 Profile* profile = render_view_host_->process()->profile(); local
167 Profile* profile = render_view_host_->process()->profile(); local
172 Profile* profile = render_view_host->process()->profile(); local
183 Profile* profile = rvh->process()->profile(); local
206 Profile* profile = render_view_host_->process()->profile(); local
    [all...]
  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.h 18 class Profile;
36 // You can use Profile::PauseAccessibilityEvents to prevent a flurry
87 views::View* view, NotificationType type, Profile* profile);
89 views::View* view, NotificationType type, Profile* profile);
91 views::View* view, NotificationType type, Profile* profile);
93 views::View* view, NotificationType type, Profile* profile);
    [all...]
  /external/chromium/chrome/browser/autofill/
personal_data_manager_mac.mm 44 AutofillProfile* profile);
45 void GetAddressBookAddresses(NSDictionary* address, AutofillProfile* profile);
48 AutofillProfile* profile);
51 AutofillProfile* profile);
75 // Create a new profile where the guid is set to the guid portion of the
82 scoped_ptr<AutofillProfile> profile(new AutofillProfile(guid));
83 DCHECK(guid::IsValidGUID(profile->guid()));
86 GetAddressBookNames(me, addressLabelRaw, profile.get());
89 GetAddressBookAddresses(address, profile.get());
92 GetAddressBookEmail(me, addressLabelRaw, profile.get())
    [all...]
autofill_dialog.h 22 class Profile;
25 // the user has applied changes to the AutoFill profile data.
40 // Shows the AutoFill dialog, which allows the user to edit profile information.
41 // |profile| is profile from which you can get vectors of autofill profiles that
42 // contains the current profile information and credit cards. The dialog fills
43 // out the profile fields using this data.
52 Profile* profile);
  /external/chromium/chrome/browser/prefs/
session_startup_pref.h 14 class Profile;
16 // StartupPref specifies what should happen at startup for a specified profile.
17 // StartupPref is stored in the preferences for a particular profile.
33 // What should happen on startup for the specified profile.
34 static void SetStartupPref(Profile* profile, const SessionStartupPref& pref);
37 static SessionStartupPref GetStartupPref(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/options/
options_page_base.h 17 class Profile;
40 explicit OptionsPageBase(Profile* profile);
42 // Returns the Profile associated with this page.
43 Profile* profile() const { return profile_; } function in class:OptionsPageBase
56 // The Profile associated with this page.
57 Profile* profile_;
  /external/chromium/chrome/browser/extensions/
extension_idle_api.cc 21 #include "chrome/browser/profiles/profile.h"
48 static void CreateNewPollTask(Profile* profile);
49 static IdleState ThrottledCalculateIdleState(int threshold, Profile* profile);
54 explicit ExtensionIdlePollingTask(Profile* profile) : profile_(profile) {}
61 Profile* profile_;
92 void CreateNewPollTask(Profile* profile)
    [all...]
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/chrome/browser/instant/
instant_confirm_dialog.h 12 class Profile;
23 Profile* profile);
29 Profile* profile);
  /external/chromium/chrome/browser/service/
service_process_control_manager.h 10 class Profile;
23 // Get the ServiceProcess instance corresponding to |profile| and |type|.
26 // There will be at most one ServiceProcess for a |profile|.
29 ServiceProcessControl* GetProcessControl(Profile* profile);
service_process_control_manager.cc 9 #include "chrome/browser/profiles/profile.h"
21 Profile* profile) {
25 // service, but now we only create a new process for a different profile.
28 if ((*i)->profile() == profile)
33 ServiceProcessControl* process = new ServiceProcessControl(profile);
  /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/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/webkit/Source/WebCore/inspector/front-end/
ProfilesPanel.js 34 WebInspector.ProfileType.URLRegExp = /webkit-profile:\/\/(.+)\/(.+)#([0-9]+)/;
66 viewForProfile: function(profile)
68 if (!profile._profileView)
69 profile._profileView = this.createView(profile);
70 return profile._profileView;
79 createView: function(profile)
85 createSidebarTreeElementForProfile: function(profile)
109 this.profileViews.id = "profile-views";
285 _addProfileHeader: function(profile)
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher.h 14 class Profile;
30 // Creates a TemplateURLFetcher with the specified Profile.
31 explicit TemplateURLFetcher(Profile* profile);
53 Profile* profile() const { return profile_; } function in class:TemplateURLFetcher
58 Profile* profile_;
  /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_;
selected_keyword_view.h 14 class Profile;
26 Profile* profile);
39 void set_profile(Profile* profile) { profile_ = profile; }
54 Profile* profile_;
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 69 // The key of the profile for the current ContextMenu.
79 VpnProfile profile = VpnProfile.decode(savedState.getString("VpnKey"), local
81 if (profile != null) {
82 mDialog = new VpnDialog(getActivity(), this, profile,
92 VpnProfile profile = mDialog.getProfile(); local
93 savedState.putString("VpnKey", profile.key);
94 savedState.putByteArray("VpnProfile", profile.encode());
132 VpnProfile profile = VpnProfile.decode(key, local
134 if (profile == null) {
135 Log.w(TAG, "bad profile: key = " + key)
189 VpnProfile profile = mDialog.getProfile(); local
225 VpnProfile profile = ((VpnPreference) preference).getProfile(); local
271 VpnProfile profile = ((VpnPreference) preference).getProfile(); local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_action_context_menu.h 19 class Profile;
37 // The browser profile of the window that contains this extension. Weak.
38 Profile* profile_;
46 // The observer used to reset |observer_| when the profile is destroyed.
55 // Initializes and returns a context menu for the given extension and profile.
57 profile:(Profile*)profile
63 // Notifies the ExtensionActionContextMenu that the profile is is being

Completed in 993 milliseconds

1 23 4 5 6 7 8 91011>>