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

<<11121314151617181920>>

  /hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
mlinclude.h 14 #ifdef PROFILE
15 #include "profile.h"
30 #ifdef PROFILE
34 #endif // PROFILE
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlinclude.h 14 #ifdef PROFILE
15 #include "profile.h"
30 #ifdef PROFILE
34 #endif // PROFILE
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.cc 14 #include "chrome/browser/profiles/profile.h"
63 Profile* profile, const std::string& name, Manifest::Type type) {
64 scoped_refptr<Extension> extension = GetExtension(profile, name, type);
69 profile->GetExtensionService()
79 Profile* profile, const std::string& name) {
81 profile->GetExtensionService(),
86 Profile* profile) const
    [all...]
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_service_browsertest.cc 14 #include "chrome/browser/profiles/profile.h"
34 Profile* profile = browser()->profile(); local
35 PrefService* prefs = profile->GetPrefs();
41 Profile* profile = browser()->profile(); local
42 PrefService* prefs = profile->GetPrefs();
48 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath())
54 Profile* profile = browser()->profile(); local
61 Profile* profile = browser()->profile(); local
    [all...]
  /external/chromium_org/chrome/test/functional/
multiprofile.py 13 """Tests for Multi-Profile / Multi-users"""
69 """Create new profile and set home page.
83 """Create new profile and set home page.
108 def _AssertStartUpPage(self, url, profile='Default'):
109 """Asserts start up page for given profile.
113 profile: The profile name, defaults to 'Default'.
115 self.AppendBrowserLaunchSwitch('--profile-directory=' + profile)
122 def _AssertHomePage(self, url, profile='Default')
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_manager_browsertest.cc 36 // An observer that returns back to test code after a new profile is
38 void OnUnblockOnProfileCreation(Profile* profile,
39 Profile::CreateStatus status) {
40 if (status == Profile::CREATE_STATUS_INITIALIZED)
44 void ProfileCreationComplete(Profile* profile, Profile::CreateStatus status) {
45 ASSERT_NE(status, Profile::CREATE_STATUS_LOCAL_FAIL);
46 ASSERT_NE(status, Profile::CREATE_STATUS_REMOTE_FAIL)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_controller_delegate.h 14 class Profile;
81 virtual void DoCreateShortcutsFlow(Profile* profile,
86 virtual void CreateNewWindow(Profile* profile, bool incognito) = 0;
89 virtual void ActivateApp(Profile* profile,
95 virtual void LaunchApp(Profile* profile,
100 // Show the app list for the profile specified by |profile_path|
    [all...]
start_page_service.h 23 class Profile;
36 // Gets the instance for the given profile.
37 static StartPageService* Get(Profile* profile);
46 Profile* profile() { return profile_; } function in class:app_list::StartPageService
56 // depends on the profile and needs to be closed before the profile and its
64 explicit StartPageService(Profile* profile);
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
login_browsertest.cc 81 // This profile should NOT be an OTR profile.
83 Profile* profile = browser()->profile(); local
84 EXPECT_EQ("user", profile->GetPath().BaseName().value());
85 EXPECT_FALSE(profile->IsOffTheRecord());
88 // On initial launch, we should get the OTR default profile.
90 Profile* profile = browser()->profile() local
    [all...]
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/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_org/chrome/browser/chromeos/file_manager/
fileapi_util.cc 10 #include "chrome/browser/profiles/profile.h"
24 Profile* profile,
26 GURL site = extensions::ExtensionSystem::Get(profile)->
28 return content::BrowserContext::GetStoragePartitionForSite(profile, site)->
33 Profile* profile,
36 return content::BrowserContext::GetStoragePartition(profile, site_instance)->
51 Profile* profile,
    [all...]
fileapi_util.h 13 class Profile;
30 // Returns a file system context associated with the given profile and the
33 Profile* profile,
36 // Returns a file system context associated with the given profile and the
39 Profile* profile,
51 Profile* profile,
60 Profile* profile
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_manager_factory_chromeos.h 15 class Profile;
30 // for UserCloudPolicyManagerChromeOS instances that initialize per-profile
35 // Therefore, lifetime of instances is managed by Profile, Profile startup code
50 // |profile|.
51 static UserCloudPolicyManagerChromeOS* GetForProfile(Profile* profile);
53 // Creates an instance for |profile|. Note that the caller is responsible for
60 Profile* profile,
    [all...]
  /external/chromium_org/chrome/browser/invalidation/
invalidation_service_factory.cc 14 #include "chrome/browser/profiles/profile.h"
29 Profile* profile) {
31 GetInstance()->GetServiceForBrowserContext(profile, true));
56 Profile* profile = static_cast<Profile*>(context); local
57 return new P2PInvalidationService(profile);
82 Profile* profile = static_cast<Profile*>(context) local
    [all...]
  /external/chromium_org/components/test/data/autofill/merge/tools/
flatten.py 22 profile = []
30 if len(profile):
31 # Reached the end of a profile.
32 # Save the current profile and prepare to build up the next one.
33 profiles.append(profile)
34 profile = []
36 # Append the current field's value to the current profile.
41 profile.append("'%s'" % field_value)
44 profile[-1] += ", '%s'" % field_value
47 if len(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_org/chrome/browser/ui/views/extensions/
browser_action_drag_data.cc 10 #include "chrome/browser/profiles/profile.h"
25 bool BrowserActionDragData::IsFromProfile(Profile* profile) const {
26 return profile_ == profile;
31 Profile* profile, ui::OSExchangeData* data) const {
34 WriteToPickle(profile, &data_pickle);
65 Profile* profile, Pickle* pickle) const {
66 pickle->WriteBytes(&profile, sizeof(profile))
    [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_org/chrome/browser/extensions/
event_router_forwarder.cc 36 void* profile,
39 if (!profile)
44 profile,
61 void* profile,
64 if (!profile)
66 HandleEvent(extension_id, event_name, event_args.Pass(), profile,
89 Profile* profile = NULL; local
91 profile = reinterpret_cast<Profile*>(profile_ptr)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
create_profile_handler.cc 60 Profile* current_profile = Profile::FromWebUI(web_ui());
67 // We can have only one in progress profile creation
133 Profile* profile,
134 Profile::CreateStatus status) {
135 if (status != Profile::CREATE_STATUS_CREATED)
139 case Profile::CREATE_STATUS_LOCAL_FAIL: {
140 ShowProfileCreationError(profile,
144 case Profile::CREATE_STATUS_CREATED:
419 Profile* profile = Profile::FromWebUI(web_ui()); local
    [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...]
  /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;

Completed in 792 milliseconds

<<11121314151617181920>>