/external/chromium/chrome/browser/profiles/ |
profile_keyed_service_factory.cc | 10 #include "chrome/browser/profiles/profile.h" 26 Profile* profile) { 28 if (profile->IsOffTheRecord()) { 30 profile = profile->GetOriginalProfile(); 40 std::map<Profile*, ProfileKeyedService*>::iterator it = 41 mapping_.find(profile); 49 service = factory_(profile); 51 service = BuildServiceInstanceFor(profile); [all...] |
profile_manager.h | 20 #include "chrome/browser/profiles/profile.h" 30 public Profile::Delegate { 34 // This method is called when profile is ready. If profile creation has been 35 // failed, method is called with |profile| equals to NULL. 36 virtual void OnProfileCreated(Profile* profile) = 0; 45 // Returns the default profile. This adds the profile to the 47 // the profile doesn't exist and we can't create it 127 scoped_ptr<Profile> profile; member in struct:ProfileManager::ProfileInfo [all...] |
/external/chromium/chrome/browser/themes/ |
theme_service_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 19 ThemeService* ThemeServiceFactory::GetForProfile(Profile* profile) { 21 GetInstance()->GetServiceForProfile(profile)); 25 const Extension* ThemeServiceFactory::GetThemeForProfile(Profile* profile) { 26 std::string id = GetForProfile(profile)->GetThemeID(); 30 return profile->GetExtensionService()->GetExtensionById(id, false); 46 Profile* profile) const [all...] |
/external/e2fsprogs/e2fsck/ |
profile.h | 2 * profile.h 48 * Used by the profile iterator in prof_get.c 62 (profile_t profile); 65 (profile_t profile, const char *def_string); 68 (profile_t profile, const char *name, const char *subname, 72 (profile_t profile, const char *name, const char *subname, 77 (profile_t profile, const char *name, const char *subname, 82 (profile_t profile, const char *name, const char *subname, 87 (profile_t profile, const char *const *names,
|
/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...] |
theme_util.h | 10 class Profile; 34 Profile* profile); 39 Profile* profile, 52 const sync_pb::ThemeSpecifics& theme_specifics, Profile* profile); 55 // |theme_specifics| uses the default theme and |profile| does not, the local 59 Profile* profile, sync_pb::ThemeSpecifics* theme_specifics) [all...] |
/external/chromium/chrome/browser/tabs/ |
pinned_tab_service_unittest.cc | 23 TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile(); variable 24 pinned_tab_service_.reset(new PinnedTabService(profile)); 25 return profile; 41 scoped_ptr<Browser> popup(new Browser(Browser::TYPE_POPUP, profile())); 50 PinnedTabCodec::ReadPinnedTabs(profile())); 60 PinnedTabCodec::ReadPinnedTabs(profile()));
|
pinned_tab_codec_unittest.cc | 23 PinnedTabCodec::WritePinnedTabs(profile()); 26 PinnedTabCodec::ReadPinnedTabs(profile())); 42 PinnedTabCodec::WritePinnedTabs(profile()); 45 PinnedTabCodec::ReadPinnedTabs(profile()));
|
/external/chromium/chrome/browser/ |
browser_url_handler.h | 20 class Profile; 30 typedef bool (*URLHandler)(GURL* url, Profile* profile); 36 static void RewriteURLIfNecessary(GURL* url, Profile* profile, 41 Profile* profile);
|
chrome_content_browser_client.cc | 12 #include "chrome/browser/profiles/profile.h" 31 Profile* profile, 34 ExtensionService* service = profile->GetExtensionService(); 49 host->profile(), 50 host->profile()->GetRequestContextForPossibleApp( 54 new SearchProviderInstallStateMessageFilter(host->id(), host->profile())); 62 GURL ChromeContentBrowserClient::GetEffectiveURL(Profile* profile, 68 if (!profile || !profile->GetExtensionService() [all...] |
background_contents_service_factory.h | 13 class Profile; 16 // Profiles. Listens for the Profile's destruction notification and cleans up 20 static BackgroundContentsService* GetForProfile(Profile* profile); 32 Profile* profile) const OVERRIDE;
|
background_mode_manager_factory.h | 13 class Profile; 16 // Profiles. Listens for the Profile's destruction notification and cleans up 20 static BackgroundModeManager* GetForProfile(Profile* profile); 32 Profile* profile) const OVERRIDE;
|
/external/chromium/chrome/browser/metrics/ |
user_metrics.h | 11 class Profile; 46 // TODO(semenzato): |profile| isn't actually used---should switch all calls 48 static void RecordAction(const UserMetricsAction& action, Profile* profile); 56 Profile* profile); 62 static void Record(const char *action, Profile *profile);
|
/external/chromium/chrome/browser/ui/options/ |
options_page_base.cc | 16 OptionsPageBase::OptionsPageBase(Profile* profile) 17 : profile_(profile) { 25 UserMetrics::RecordAction(action, profile());
|
options_util.h | 11 class Profile; 18 static void ResetToDefaults(Profile* profile);
|
show_options_url.h | 10 class Profile; 16 void ShowOptionsURL(Profile* profile, const GURL& url);
|
/external/chromium/chrome/browser/chromeos/frame/ |
browser_frame_chromeos.cc | 14 Profile* profile) { 16 new chromeos::BrowserFrameChromeos(browser_view, profile); 24 BrowserView* browser_view, Profile* profile) 25 : BrowserFrameGtk(browser_view, profile) {
|
/external/chromium/chrome/browser/notifications/ |
desktop_notification_service_factory.cc | 9 #include "chrome/browser/profiles/profile.h" 15 Profile* profile) { 18 GetInstance()->GetServiceForProfile(profile)); 35 Profile* profile) const { 36 DesktopNotificationService* service = new DesktopNotificationService(profile,
|
/external/chromium/chrome/browser/service/ |
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/sessions/ |
session_restore.h | 16 class Profile; 33 static void RestoreSession(Profile* profile, 42 Profile* profile, 48 static void RestoreForeignSessionTab(Profile* profile, 59 Profile* profile,
|
/external/chromium/chrome/browser/ui/cocoa/ |
encoding_menu_controller_delegate_mac.h | 12 class Profile; 19 static void BuildEncodingMenu(Profile *profile, NSMenu* encoding_menu);
|
/external/chromium/chrome/browser/ui/gtk/ |
about_chrome_dialog.h | 9 class Profile; 12 // Displays the about box, using data copied from |profile|. 13 void ShowAboutDialogForProfile(GtkWindow* parent, Profile* profile);
|
/external/chromium/chrome/browser/ui/webui/ |
chrome_web_ui_factory.h | 17 class Profile; 23 virtual WebUI::TypeID GetWebUIType(Profile* profile, const GURL& url) const; 24 virtual bool UseWebUIForURL(Profile* profile, const GURL& url) const; 26 virtual bool IsURLAcceptableForWebUI(Profile* profile, const GURL& url) const; 32 void GetFaviconForURL(Profile* profile,
|
/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...] |
/external/chromium/chrome/browser/webdata/ |
autofill_change.cc | 18 Type type, std::string key, const AutofillProfile* profile) 20 profile_(profile) { 21 DCHECK(type == ADD ? (profile && profile->guid() == key) : true); 22 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true); 23 DCHECK(type == REMOVE ? !profile : true); 33 (type() != REMOVE) ? *profile() == *change.profile() : true;
|