/external/chromium/chrome/browser/debugger/ |
extension_ports_remote_service.cc | 116 // |profile|. But we do not have a particular tab or RenderViewHost 117 // as context. I'll just use the first active profile not in 121 LOG(WARNING) << "No profile manager for ExtensionPortsRemoteService"; 125 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles()); 133 LOG(WARNING) << "No usable profile for ExtensionPortsRemoteService";
|
/external/chromium/chrome/browser/download/ |
download_util.h | 32 class Profile; 79 void OpenChromeExtension(Profile* profile, 270 bool IsDangerous(DownloadCreateInfo* info, Profile* profile, bool auto_open);
|
/external/chromium/chrome/browser/extensions/ |
extension_crash_recovery_browsertest.cc | 15 #include "chrome/browser/profiles/profile.h" 27 return browser()->profile()->GetExtensionService(); 31 return browser()->profile()->GetExtensionProcessManager(); 239 Browser* browser2 = CreateBrowser(browser()->profile()); 269 Browser* browser2 = CreateBrowser(browser()->profile());
|
extension_service.cc | 51 #include "chrome/browser/profiles/profile.h" 412 ExtensionService::ExtensionService(Profile* profile, 418 : profile_(profile), 426 apps_promo_(profile->GetPrefs()), 433 } else if (profile->GetPrefs()->GetBoolean(prefs::kDisableExtensions)) { 439 pref_change_registrar_.Init(profile->GetPrefs()); 453 profile->GetPrefs(), 454 profile, 489 DCHECK(!profile_); // Profile should have told us it's going away 1191 Profile* ExtensionService::profile() { function in class:ExtensionService [all...] |
/external/chromium/chrome/browser/ |
external_tab_container_win.h | 29 class Profile; 65 bool Init(Profile* profile, 149 virtual void ShowPageInfo(Profile* profile,
|
page_info_model.cc | 13 #include "chrome/browser/profiles/profile.h" 26 PageInfoModel::PageInfoModel(Profile* profile, 269 HistoryService* history = profile->GetHistoryService( 270 Profile::EXPLICIT_ACCESS);
|
browser_main.cc | 65 #include "chrome/browser/profiles/profile.h" 626 // Profile (and therefore the first CookieMonster) is created. 714 // If the local state file for the current profile doesn't exist and the 715 // parent profile command line flag is present, then we should inherit some 716 // local state from the parent profile. 717 // Checking that the local state file for the current profile doesn't exist 719 // since the parent profile command line flag can be present even when the 720 // current profile is not a new one, and in that case we do not want to 730 // Right now, we only inherit the locale setting from the parent profile. 818 Profile* profile = g_browser_process->profile_manager()->GetDefaultProfile( local 1504 Profile* profile = CreateProfile(parameters, user_data_dir); local [all...] |
/external/chromium/chrome/browser/rlz/ |
rlz.cc | 26 #include "chrome/browser/profiles/profile.h" 222 Profile* profile = profile_manager->GetDefaultProfile(user_data_dir); local 223 if (!profile) 226 profile->GetTemplateURLModel()->GetDefaultSearchProvider();
|
/external/chromium/chrome/browser/sync/ |
sync_ui_util.cc | 12 #include "chrome/browser/profiles/profile.h" 261 void OpenSyncMyBookmarksDialog(Profile* profile, 265 profile->GetOriginalProfile()->GetProfileSyncService(); 274 browser = Browser::Create(profile);
|
profile_sync_service_session_unittest.cc | 69 profile()->CreateRequestContext(); 94 profile()->set_session_service(NULL); 100 profile()->ResetRequestContext(); 109 &factory_, profile(), "test user", false, task)); 110 profile()->set_session_service(helper_.service()); 126 profile(), 128 profile()->GetTokenService()->IssueAuthTokenForTest(
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_menu_controller_gtk.cc | 13 #include "chrome/browser/profiles/profile.h" 68 Profile* profile, 74 profile_(profile), 77 model_(profile->GetBookmarkModel()),
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_theme_service.h | 22 class Profile; 39 static GtkThemeService* GetFrom(Profile* profile); 52 virtual void Init(Profile* profile);
|
/external/chromium/chrome/browser/ui/views/extensions/ |
extension_install_dialog_view.cc | 10 #include "chrome/browser/profiles/profile.h" 315 Profile* profile, 323 Browser* browser = BrowserList::FindBrowserWithType(profile, 327 Browser* browser = BrowserList::GetLastActiveWithProfile(profile);
|
/external/bluetooth/bluez/network/ |
server.c | 162 sdp_profile_desc_t profile[1]; local 185 sdp_uuid16_create(&profile[0].uuid, NAP_PROFILE_ID); 186 profile[0].version = 0x0100; 187 pfseq = sdp_list_append(NULL, &profile[0]); 202 sdp_uuid16_create(&profile[0].uuid, GN_PROFILE_ID); 203 profile[0].version = 0x0100; 204 pfseq = sdp_list_append(NULL, &profile[0]); 214 sdp_uuid16_create(&profile[0].uuid, PANU_PROFILE_ID); 215 profile[0].version = 0x0100; 216 pfseq = sdp_list_append(NULL, &profile[0]) [all...] |
/external/chromium/chrome/browser/history/ |
history.cc | 43 #include "chrome/browser/profiles/profile.h" 134 HistoryService::HistoryService(Profile* profile) 136 profile_(profile), 143 Source<Profile>(profile_)); 145 Source<Profile>(profile_)); 640 return; // No profile, probably unit testing. 763 // The source of all of our notifications is the profile. Note that this 765 Source<Profile> source(profile_); 785 // There may not be a profile when unit testing [all...] |
/external/chromium/chrome/browser/prerender/ |
prerender_browsertest.cc | 10 #include "chrome/browser/profiles/profile.h" 54 PrerenderManager* prerender_manager, Profile* profile, const GURL& url, 59 : PrerenderContents(prerender_manager, profile, url, alias_urls, 105 PrerenderManager* prerender_manager, Profile* profile, const GURL& url, 115 return new TestPrerenderContents(prerender_manager, profile, url, 283 Profile* profile = browser()->GetSelectedTabContents()->profile(); local [all...] |
/external/chromium/chrome/browser/sync/glue/ |
bookmark_change_processor.cc | 15 #include "chrome/browser/profiles/profile.h" 34 void BookmarkChangeProcessor::StartImpl(Profile* profile) { 37 bookmark_model_ = profile->GetBookmarkModel(); 517 ApplyBookmarkFavicon(bookmark_node, bookmark_model->profile(), 527 Profile* profile, 537 profile->GetHistoryService(Profile::EXPLICIT_ACCESS); 539 profile->GetFaviconService(Profile::EXPLICIT_ACCESS) [all...] |
/external/chromium/chrome/browser/ui/views/ |
toolbar_view.cc | 13 #include "chrome/browser/profiles/profile.h" 127 void ToolbarView::Init(Profile* profile) { 154 location_bar_ = new LocationBarView(profile, browser_->command_updater(), 203 show_home_button_.Init(prefs::kShowHomeButton, profile->GetPrefs(), this); 206 SetProfile(profile); 217 void ToolbarView::SetProfile(Profile* profile) { 218 if (profile != profile_) { 219 profile_ = profile; [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit_view_views.cc | 114 Profile* profile, 118 : model_(new AutocompleteEditModel(this, controller, profile)), 119 popup_view_(CreatePopupView(profile, location_bar)), 642 Profile* profile, 649 gfx::Font(), this, model_.get(), profile, location_bar);
|
history_url_provider.h | 16 class Profile; 143 HistoryURLProvider(ACProviderListener* listener, Profile* profile); 147 Profile* profile, 149 : HistoryProvider(listener, profile, "History"), 303 // profile's pref system.
|
/external/chromium/chrome/browser/notifications/ |
desktop_notifications_unittest.cc | 25 Profile* profile) { 35 BalloonCollectionImpl::Add(test_notification, profile); 43 Profile* profile) { 45 Balloon* balloon = BalloonCollectionImpl::MakeBalloon(notification, profile); 91 service_.reset(new DesktopNotificationService(profile(), ui_manager_.get()));
|
/external/chromium/chrome/browser/prefs/ |
pref_service.h | 29 class Profile; 130 // file. The |profile| is the one to which these preferences apply; it may be 137 Profile* profile); 142 Profile* profile, 338 // Pref Stores and profile that we passed to the PrefValueStore.
|
/external/chromium/chrome/browser/tab_contents/ |
thumbnail_generator.cc | 16 #include "chrome/browser/profiles/profile.h" 441 history::TopSites* top_sites = tab_contents->profile()->GetTopSites(); 443 if (!ShouldUpdateThumbnail(tab_contents->profile(), top_sites, url)) 467 bool ThumbnailGenerator::ShouldUpdateThumbnail(Profile* profile, 470 if (!profile || !top_sites) 473 if (profile->IsOffTheRecord())
|
/external/chromium/chrome/browser/ui/ |
browser_window.h | 21 class Profile; 208 Profile* profile) = 0; 273 virtual void ShowPageInfo(Profile* profile, 298 virtual void ShowCreateChromeAppShortcutsDialog(Profile* profile,
|
/external/chromium/chrome/browser/visitedlink/ |
visitedlink_master.h | 23 class Profile; 53 VisitedLinkMaster(Listener* listener, Profile* profile); 155 void InitMembers(Listener* listener, Profile* profile); 310 // Reference to the user profile that this object belongs to 312 Profile* profile_;
|