/external/chromium/chrome/browser/ui/webui/ |
theme_source_unittest.cc | 6 #include "chrome/browser/profiles/profile.h" 17 explicit MockThemeSource(Profile* profile) 18 : ThemeSource(profile), 39 TestingProfile* profile() const { return profile_.get(); } function in class:WebUISourcesTest
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLHeadElement01.js | 78 The profile attribute specifies a URI designating a metadata profile. 80 Retrieve the profile attribute and examine its value. 102 vprofile = testNode.profile; 104 assertURIEquals("profileLink",null,null,null,"profile",null,null,null,null,vprofile);
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLHeadElement01.js | 78 The profile attribute specifies a URI designating a metadata profile. 80 Retrieve the profile attribute and examine its value. 102 vprofile = testNode.profile; 104 assertURIEquals("profileLink",null,null,null,"profile",null,null,null,null,vprofile);
|
/external/webkit/Source/JavaScriptCore/API/ |
JSProfilerPrivate.h | 43 @param title The title of the profile. 52 @param title The title of the profile. 54 profile is stopped. If the name does not match any profile then no profile
|
/external/webkit/Source/JavaScriptCore/profiler/ |
ProfileGenerator.h | 29 #include "Profile.h" 38 class Profile; 49 PassRefPtr<Profile> profile() const { return m_profile; } function in class:JSC::ProfileGenerator 71 RefPtr<Profile> m_profile;
|
/packages/apps/Browser/src/com/android/browser/ |
AutofillHandler.java | 37 // Default to zero. In the case no profile is set up, the initial 39 // creates a profile. Otherwise, we'll read the ID of the last used 40 // profile from the prefs db. 87 // Read the last active AutoFill profile id. 92 // Load the autofill profile data from the database. We use a database separate 95 // is extremely slow. We do this to ensure that if there's a profile set, the 130 // At this point we've loaded the profile if there was one, so let any thread 137 // to actually setting the inferred profile. 139 // We did not load a profile from disk. Try to infer one from the user's 141 final Uri profileUri = Uri.withAppendedPath(ContactsContract.Profile.CONTENT_URI [all...] |
AutoFillProfileDatabase.java | 98 public void addOrUpdateProfile(final int id, AutoFillProfile profile) { 113 profile.getFullName(), 114 profile.getEmailAddress(), 115 profile.getCompanyName(), 116 profile.getAddressLine1(), 117 profile.getAddressLine2(), 118 profile.getCity(), 119 profile.getState(), 120 profile.getZipCode(), 121 profile.getCountry() [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
ProfileAndContactsLoader.java | 26 import android.provider.ContactsContract.Profile; 31 * A loader for use in the default contact list, which will also query for the user's profile 54 // First load the profile, if enabled. 71 * Loads the profile into a MatrixCursor. 74 Cursor cursor = getContext().getContentResolver().query(Profile.CONTENT_URI, mProjection,
|
/external/chromium/chrome/browser/extensions/ |
extension_bookmarks_module.cc | 30 #include "chrome/browser/profiles/profile.h" 76 BookmarkModel* model = profile()->GetBookmarkModel(); 115 DCHECK(profile()->GetBookmarkModel()->IsLoaded()); 138 void ExtensionBookmarkEventRouter::DispatchEvent(Profile *profile, 141 if (profile->GetExtensionEventRouter()) { 142 profile->GetExtensionEventRouter()->DispatchEventToRenderers( 172 DispatchEvent(model->profile(), keys::kOnBookmarkMoved, json_args); 187 DispatchEvent(model->profile(), keys::kOnBookmarkCreated, json_args); 205 DispatchEvent(model->profile(), keys::kOnBookmarkRemoved, json_args) [all...] |
/external/chromium/chrome/browser/ui/ |
browser.h | 50 class Profile; 126 // Creates a new browser of the given |type| and for the given |profile|. The 131 Browser(Type type, Profile* profile); 134 // Creates a normal tabbed browser with the specified profile. The Browser's 136 static Browser* Create(Profile* profile); 140 static Browser* CreateForPopup(Type type, Profile* profile, 145 static Browser* CreateForType(Type type, Profile* profile) 181 Profile* profile() const { return profile_; } function in class:Browser [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.h | 15 class Profile; 22 Profile* profile); 25 // Invoked when the profile has changed. 26 void set_profile(Profile* profile) { profile_ = profile; } 29 Profile* profile() const { return profile_; } function in class:AutocompletePopupModel 119 // Profile for current tab [all...] |
/external/chromium/chrome/browser/importer/ |
importer_host.h | 22 class Profile; 68 // |source_profile| - importer profile to import. 69 // |target_profile| - profile to import into. 71 // |writer| - called to actually write data back to the profile. 75 Profile* target_profile, 92 // |source_profile| - importer profile to import. 104 // Profile we're importing from. 105 Profile* profile_; 122 // True if source profile is readable. 128 // Writes data from the importer back to the profile [all...] |
/external/chromium/chrome/browser/notifications/ |
balloon_host.cc | 10 #include "chrome/browser/profiles/profile.h" 41 balloon_->profile()->GetExtensionProcessManager()->GetSiteInstanceForURL( 44 site_instance_ = SiteInstance::CreateSiteInstance(balloon_->profile()); 84 Profile* BalloonHost::GetProfile() const { 85 return balloon_->profile(); 148 balloon_->profile(), 150 ChromeWebUIFactory::GetInstance()->GetWebUIType(balloon_->profile(), 168 Browser* browser = BrowserList::GetLastActiveWithProfile(balloon_->profile()); 188 RendererPreferences BalloonHost::GetRendererPrefs(Profile* profile) const [all...] |
notification_ui_manager.cc | 28 QueuedNotification(const Notification& notification, Profile* profile) 30 profile_(profile) { 34 Profile* profile() const { return profile_; } function in class:QueuedNotification 44 // Non owned pointer to the user's profile. 45 Profile* profile_; 94 Profile* profile) { 102 new QueuedNotification(notification, profile)); [all...] |
balloon.h | 21 class Profile; 52 Profile* profile, 57 Profile* profile() const { return profile_; } function in class:Balloon 112 // Non-owned pointer to the profile. 113 Profile* profile_;
|
desktop_notifications_unittest.h | 42 Profile* profile); 45 Profile* profile); 79 Profile* profile() { return profile_.get(); } function in class:DesktopNotificationsTest 109 // Test profile.
|
/external/chromium/chrome/browser/sessions/ |
base_session_service.h | 17 class Profile; 42 // |type| gives the type of session service, |profile| the profile and 43 // |path| the path to save files to. If |profile| is non-NULL, |path| is 44 // ignored and instead the path comes from the profile. 46 Profile* profile, 49 Profile* profile() const { return profile_; } function in class:BaseSessionService 165 // The profile. This may be null during testing [all...] |
/external/chromium/chrome/browser/sync/ |
test_profile_sync_service.cc | 31 Profile* profile, 34 : browser_sync::SyncBackendHost(profile), 135 SetDefaultExpectationsForWorkerCreation(ProfileMock* profile) { 136 EXPECT_CALL(*profile, GetPasswordStore(testing::_)). 141 ProfileMock* profile) { 142 EXPECT_CALL(*profile, GetHistoryService(testing::_)). 160 Profile* profile, 164 : ProfileSyncService(factory, profile, test_user) [all...] |
/frameworks/base/tests/RenderScriptTests/SceneGraph/assets/ |
orientation_test.dae | 28 <technique profile="OpenCOLLADAMaya"> 52 <technique profile="OpenCOLLADAMaya"> 115 <technique profile="OpenCOLLADAMaya"> 172 <technique profile="OpenCOLLADAMaya"> 229 <technique profile="OpenCOLLADAMaya"> 286 <technique profile="OpenCOLLADAMaya"> 343 <technique profile="OpenCOLLADAMaya"> 400 <technique profile="OpenCOLLADAMaya"> 457 <technique profile="OpenCOLLADAMaya"> 514 <technique profile="OpenCOLLADAMaya" [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
html_page_screen.cc | 26 TabContents* HTMLPageDomView::CreateTabContents(Profile* profile, 28 return new WizardWebPageViewTabContents(profile, 57 Profile* profile = ProfileManager::GetDefaultProfile(); local 58 view()->InitDOM(profile, 59 SiteInstance::CreateSiteInstanceForURL(profile, url));
|
web_page_view.h | 16 class Profile; 42 WizardWebPageViewTabContents(Profile* profile, 80 virtual TabContents* CreateTabContents(Profile* profile, 99 void InitDOM(Profile* profile, SiteInstance* site_instance);
|
/external/chromium/chrome/browser/content_settings/ |
content_settings_policy_provider.h | 25 class Profile; 32 explicit PolicyDefaultProvider(Profile* profile); 68 Profile* profile_; 87 explicit PolicyProvider(Profile* profile); 142 Profile* profile_;
|
content_settings_pref_provider.h | 26 class Profile; 35 explicit PrefDefaultProvider(Profile* profile); 79 Profile* profile_; 107 explicit PrefProvider(Profile* profile); 157 Profile* profile_;
|
/external/chromium/chrome/browser/metrics/ |
metrics_log.h | 30 // client_id is the identifier for this profile on this installation 40 // profile_metrics, if non-null, gives a dictionary of all profile metrics 42 // dictionary giving the metrics for the profile. 74 // Writes application stability metrics (as part of the profile log). 94 // Within the profile group, write basic install info including appversion. 97 // Writes all profile metrics. This invokes WriteProfileMetrics for each key 101 // Writes metrics for the profile identified by key. This writes all
|
/external/chromium/chrome/browser/ui/cocoa/applescript/ |
browsercrapplication+applescript_test.mm | 7 #include "chrome/browser/profiles/profile.h" 22 Profile* profile = browser()->profile(); 23 Browser* b1 = Browser::CreateForType(Browser::TYPE_POPUP, profile); 24 Browser* b2 = Browser::CreateForApp("", gfx::Size(), profile, true); 25 Browser* b3 = Browser::CreateForApp("", gfx::Size(), profile, false);
|